BmnRoot
Loading...
Searching...
No Matches
BmnBCGeoPar.h
Go to the documentation of this file.
1#ifndef BMNGEOBCPAR_H
2#define BMNGEOBCPAR_H
3
4#include "FairParGenericSet.h"
5#include "TObjArray.h"
6
7class BmnBCGeoPar : public FairParGenericSet {
8public:
9 TObjArray *fGeoSensNodes;
10 TObjArray *fGeoPassNodes;
12 BmnBCGeoPar(const char* name="BmnBCGeoPar",
13 const char* title="BC Geometry Parameters",
14 const char* context="BCDefaultContext");
15 ~BmnBCGeoPar(void);
16 void clear(void);
17 void putParams(FairParamList*);
18 Bool_t getParams(FairParamList*);
19 TObjArray *GetGeoSensitiveNodes(){return fGeoSensNodes;}
20 TObjArray *GetGeoPassiveNodes(){return fGeoPassNodes;}
21
22
23
24 ClassDef(BmnBCGeoPar,1)
25};
26
27#endif /* !BMNGEOBCPAR_H */
void putParams(FairParamList *)
TObjArray * GetGeoPassiveNodes()
Definition BmnBCGeoPar.h:20
Bool_t getParams(FairParamList *)
void clear(void)
TObjArray * fGeoSensNodes
Definition BmnBCGeoPar.h:9
~BmnBCGeoPar(void)
TObjArray * GetGeoSensitiveNodes()
Definition BmnBCGeoPar.h:19
TObjArray * fGeoPassNodes
Definition BmnBCGeoPar.h:10