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

Last change on this file since 3148 was 2899, checked in by tbretz, 21 years ago
*** empty log message ***
File size: 540 bytes
Line 
1#ifndef MARS_MGeomApply
2#define MARS_MGeomApply
3
4#ifndef MARS_MTask
5#include "MTask.h"
6#endif
7
8class MParList;
9
10class MGeomApply : public MTask
11{
12private:
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
19public:
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.