source: trunk/MagicSoft/Mars/manalysis/MGeomApply.h@ 2527

Last change on this file since 2527 was 2438, checked in by tbretz, 21 years ago
*** empty log message ***
File size: 510 bytes
Line 
1#ifndef MARS_MGeomApply
2#define MARS_MGeomApply
3
4#ifndef MARS_MTask
5#include "MTask.h"
6#endif
7
8class MParList;
9class MGeomCam;
10
11class MGeomApply : public MTask
12{
13private:
14 const MGeomCam *fGeom;
15 TString fGeomName;
16
17 Int_t PreProcess(MParList *plist);
18 Bool_t ReInit(MParList *pList);
19
20public:
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.