FairGeoTarget.h 1.1 KB

1234567891011121314151617181920212223242526272829
  1. /********************************************************************************
  2. * Copyright (C) 2014 GSI Helmholtzzentrum fuer Schwerionenforschung GmbH *
  3. * *
  4. * This software is distributed under the terms of the *
  5. * GNU Lesser General Public Licence version 3 (LGPL) version 3, *
  6. * copied verbatim in the file "LICENSE" *
  7. ********************************************************************************/
  8. #ifndef PNDGEOTARGET_H
  9. #define PNDGEOTARGET_H
  10. #include "FairGeoSet.h" // for FairGeoSet
  11. #include "Rtypes.h" // for FairGeoTarget::Class, Int_t, etc
  12. class FairGeoTarget : public FairGeoSet
  13. {
  14. protected:
  15. char modName[2]; // name of module
  16. char eleName[2]; // substring for elements in module
  17. public:
  18. FairGeoTarget();
  19. ~FairGeoTarget() {}
  20. const char* getModuleName(Int_t) {return modName;}
  21. const char* getEleName(Int_t) {return eleName;}
  22. ClassDef(FairGeoTarget,0) // Class for geometry of Target
  23. };
  24. #endif /* !PNDGEOTARGET_H */