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

Last change on this file since 2951 was 2206, checked in by tbretz, 21 years ago
*** empty log message ***
File size: 503 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 Int_t PreProcess(MParList *plist);
23 Int_t Process();
24
25 ClassDef(MEnergyEstimate, 0) // Task to copy the MC energy (preliminary)
26};
27
28#endif
29
Note: See TracBrowser for help on using the repository browser.