MpdStsGeo.h 397 B

12345678910111213141516171819202122
  1. #ifndef MPDSTSGEO_H
  2. #define MPDSTSGEO_H
  3. #include "FairGeoSet.h"
  4. class MpdStsGeo : public FairGeoSet {
  5. protected:
  6. char modName[20]; // name of module
  7. char eleName[20]; // substring for elements in module
  8. public:
  9. MpdStsGeo();
  10. ~MpdStsGeo() {}
  11. const char* getModuleName(Int_t);
  12. const char* getEleName(Int_t);
  13. ClassDef(MpdStsGeo,0) // Class for Sts
  14. };
  15. #endif /* !MPDSTSGEO_H */