MpdBbcGeo.h 397 B

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