MpdDchGeo.h 397 B

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