FairTarget.h 1002 B

12345678910111213141516171819202122232425262728
  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 Target_H
  9. #define Target_H
  10. #include "FairModule.h" // for FairModule
  11. #include "Rtypes.h" // for FairTarget::Class, ClassDef, etc
  12. class FairTarget : public FairModule
  13. {
  14. public:
  15. FairTarget(const char* name, const char* Title="PND Target");
  16. FairTarget();
  17. virtual ~FairTarget();
  18. virtual void ConstructGeometry();
  19. ClassDef(FairTarget,1)
  20. };
  21. #endif //Target_H