EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
EicGeoPar.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file EicGeoPar.h
1 //
2 // AYK (ayk@bnl.gov), 2013/06/13
3 //
4 // EIC FairRoot-style (dummy) geometry parameter class; keep at the very minumum
5 // until figure out hwo to use it efficiently;
6 //
7 
8 #ifndef _EIC_GEO_PAR_
9 #define _EIC_GEO_PAR_
10 
11 #include "FairParGenericSet.h"
12 
13 class EicGeoPar : public FairParGenericSet {
14 public:
15  //TObjArray *fGeoSensNodes; // List of FairGeoNodes for sensitive volumes
16  //TObjArray *fGeoPassNodes; // List of FairGeoNodes for passive volumes
17 
18  EicGeoPar(const char* name, const char* title, const char* context);
19  // Just in order to avoid 'Warning in <TBufferFile::WriteObjectAny>:';
20  EicGeoPar() {};
21  ~EicGeoPar(void);
22 
23  void clear(void);
24  void putParams(FairParamList*);
25  Bool_t getParams(FairParamList*);
26  //TObjArray *GetGeoSensitiveNodes(){return fGeoSensNodes;}
27  //TObjArray *GetGeoPassiveNodes(){return fGeoPassNodes;}
28 
29  ClassDef(EicGeoPar,5)
30 };
31 
32 #endif