source: trunk/MagicSoft/Mars/manalysis/MEnergyEstimate.h@ 1599

Last change on this file since 1599 was 1211, checked in by tbretz, 23 years ago
*** empty log message ***
File size: 492 bytes
Line 
1#ifndef MARS_MEnergyEstimate
2#define MARS_MEnergyEstimate
3
4#ifndef MARS_MTask
5#include "MTask.h"
6#endif
7
8class MMcEvt;
9class MHillas;
10class MEnergyEst;
11
12class MEnergyEstimate : public MTask
13{
14private:
15 MMcEvt *fMcEvt;
16 MHillas *fHillas;
17 MEnergyEst *fEnergy;
18
19public:
20 MEnergyEstimate(const char *name=NULL, const char *title=NULL);
21
22 Bool_t PreProcess(MParList *plist);
23 Bool_t Process();
24
25 ClassDef(MEnergyEstimate, 0) // Task to estimate the energy
26};
27
28#endif
29
Note: See TracBrowser for help on using the repository browser.