FairRoot
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
FairTutorialDet2GeoPar.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 FAIRTUTORIALDET2GEOPAR_H
9 #define FAIRTUTORIALDET2GEOPAR_H
10 
11 #include "FairParGenericSet.h"
12 
13 #include <Rtypes.h>
14 
15 class TObjArray;
16 class FairParamList;
17 
19 {
20  public:
22  TObjArray* fGeoSensNodes;
23 
25  TObjArray* fGeoPassNodes;
26 
27  FairTutorialDet2GeoPar(const char* name = "FairTutorialDet2GeoPar",
28  const char* title = "FairTutorialDet2 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(FairTutorialDet2GeoPar, 1);
42 };
43 
44 #endif /* FAIRTUTORIALDETGEOPAR_H */
void putParams(FairParamList *)
Bool_t getParams(FairParamList *)
FairTutorialDet2GeoPar(const char *name="FairTutorialDet2GeoPar", const char *title="FairTutorialDet2 Geometry Parameters", const char *context="TestDefaultContext")