MpdZdcGeo.h 726 B

12345678910111213141516171819202122232425262728293031323334
  1. /*************************************************************************************
  2. *
  3. * Class MpdZdcGeo
  4. *
  5. * Adopted for MPD by: Elena Litvinenko
  6. * e-mail: litvin@nf.jinr.ru
  7. * Version: 8-Apr-2008
  8. *
  9. ************************************************************************************/
  10. #ifndef MPDGEOZDC_H
  11. #define MPDGEOZDC_H
  12. #include "FairGeoSet.h"
  13. class MpdZdcGeo : public FairGeoSet {
  14. protected:
  15. char modName[20]; // name of module
  16. char eleName[20]; // substring for elements in module
  17. public:
  18. MpdZdcGeo();
  19. ~MpdZdcGeo() {}
  20. const char* getModuleName(Int_t);
  21. const char* getEleName(Int_t);
  22. ClassDef(MpdZdcGeo,0) // Class for Hyp
  23. };
  24. #endif /* !MPDGEOZDC_H */