MpdCpcGeo.h 397 B

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