| 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 | class MGeomCam;
|
|---|
| 10 |
|
|---|
| 11 | class MGeomApply : public MTask
|
|---|
| 12 | {
|
|---|
| 13 | private:
|
|---|
| 14 | const MGeomCam *fGeom;
|
|---|
| 15 | TString fGeomName;
|
|---|
| 16 |
|
|---|
| 17 | Int_t PreProcess(MParList *plist);
|
|---|
| 18 | Bool_t ReInit(MParList *pList);
|
|---|
| 19 |
|
|---|
| 20 | public:
|
|---|
| 21 | MGeomApply(const char *name=NULL, const char *title=NULL);
|
|---|
| 22 |
|
|---|
| 23 | void SetGeometry(TString geom) { fGeomName = geom; }
|
|---|
| 24 |
|
|---|
| 25 | ClassDef(MGeomApply, 0) // Task to apply geometry settings
|
|---|
| 26 | };
|
|---|
| 27 |
|
|---|
| 28 | #endif
|
|---|
| 29 |
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.