FairRoot
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
FairTestDetectorGeoPar.h
Go to the documentation of this file.
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 (LGPL) version 3, *
6  * copied verbatim in the file "LICENSE" *
7  ********************************************************************************/
8 #ifndef FAIRTESTDETECTORGEOPAR_H_
9 #define FAIRTESTDETECTORGEOPAR_H_
10 
11 #include "FairParGenericSet.h" // for FairParGenericSet
12 
13 #include <Rtypes.h> // for Class Def
14 
15 class TObjArray;
16 class FairParamList;
17 
19 {
20  public:
22  TObjArray* fGeoSensNodes;
23 
25  TObjArray* fGeoPassNodes;
26 
27  FairTestDetectorGeoPar(const char* name = "FairTestDetectorGeoPar",
28  const char* title = "FairTestDetector Geometry Parameters",
29  const char* context = "TestDefaultContext");
31  void clear(void);
32  void putParams(FairParamList*);
33  Bool_t getParams(FairParamList*);
34  TObjArray* GetGeoSensitiveNodes() { return fGeoSensNodes; }
35  TObjArray* GetGeoPassiveNodes() { return fGeoPassNodes; }
36 
37  private:
40 
41  ClassDef(FairTestDetectorGeoPar, 1);
42 };
43 
44 #endif /* FAIRTESTDETECTORGEOPAR_H_ */
Bool_t getParams(FairParamList *)
void putParams(FairParamList *)
FairTestDetectorGeoPar(const char *name="FairTestDetectorGeoPar", const char *title="FairTestDetector Geometry Parameters", const char *context="TestDefaultContext")