FairCave.h 1.0 KB

12345678910111213141516171819202122232425262728293031
  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 Cave_H
  9. #define Cave_H
  10. #include "FairModule.h" // for FairModule
  11. #include "Rtypes.h" // for FairCave::Class, ClassDef, etc
  12. class FairCave : public FairModule
  13. {
  14. public:
  15. FairCave(const char* name, const char* Title="Exp Cave");
  16. FairCave();
  17. virtual ~FairCave();
  18. virtual void ConstructGeometry();
  19. private:
  20. Double_t world[3];
  21. ClassDef(FairCave,1) //PNDCaveSD
  22. };
  23. #endif //Cave_H