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