Line | |
---|
1 | #ifndef MARS_MGeomApply
|
---|
2 | #define MARS_MGeomApply
|
---|
3 |
|
---|
4 | #ifndef MARS_MTask
|
---|
5 | #include "MTask.h"
|
---|
6 | #endif
|
---|
7 |
|
---|
8 | class MParList;
|
---|
9 |
|
---|
10 | class MGeomApply : public MTask
|
---|
11 | {
|
---|
12 | private:
|
---|
13 | TString fGeomName; // Name of geometry class
|
---|
14 |
|
---|
15 | Int_t PreProcess(MParList *plist);
|
---|
16 | Bool_t ReInit(MParList *pList);
|
---|
17 | void StreamPrimitive(ofstream &out) const;
|
---|
18 |
|
---|
19 | public:
|
---|
20 | MGeomApply(const char *name=NULL, const char *title=NULL);
|
---|
21 |
|
---|
22 | void SetGeometry(TString geom) { fGeomName = geom; }
|
---|
23 |
|
---|
24 | ClassDef(MGeomApply, 0) // Task to apply geometry settings
|
---|
25 | };
|
---|
26 |
|
---|
27 | #endif
|
---|
28 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.