12345678910111213141516171819202122232425262728 |
- /********************************************************************************
- * Copyright (C) 2014 GSI Helmholtzzentrum fuer Schwerionenforschung GmbH *
- * *
- * This software is distributed under the terms of the *
- * GNU Lesser General Public Licence version 3 (LGPL) version 3, *
- * copied verbatim in the file "LICENSE" *
- ********************************************************************************/
- #ifndef Target_H
- #define Target_H
- #include "FairModule.h" // for FairModule
- #include "Rtypes.h" // for FairTarget::Class, ClassDef, etc
- class FairTarget : public FairModule
- {
- public:
- FairTarget(const char* name, const char* Title="PND Target");
- FairTarget();
- virtual ~FairTarget();
- virtual void ConstructGeometry();
- ClassDef(FairTarget,1)
- };
- #endif //Target_H
|