MpdEtofGeo.h 749 B

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