source: trunk/MagicSoft/Mars/mtemp/mifae/library/MTopologyCalc.h@ 6977

Last change on this file since 6977 was 5658, checked in by rico, 20 years ago
*** empty log message ***
File size: 567 bytes
Line 
1#ifndef MARS_MTopologyCalc
2#define MARS_MTopologyCalc
3
4#ifndef MARS_MTask
5#include "MTask.h"
6#endif
7
8class MGeomCam;
9class MCerPhotEvt;
10class MTopology;
11
12class MTopologyCalc : public MTask
13{
14private:
15
16 const MGeomCam *fGeomCam;
17 const MCerPhotEvt *fCerPhotEvt;
18
19 MTopology *fTopology;
20
21 Int_t fErrors;
22
23 Int_t PreProcess(MParList *plist);
24 Int_t Process();
25 Int_t PostProcess();
26
27public:
28
29 MTopologyCalc(const char *name=NULL, const char *title=NULL);
30
31 ClassDef(MTopologyCalc, 0) // task to calculate....
32};
33
34#endif
Note: See TracBrowser for help on using the repository browser.