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

Last change on this file since 6232 was 5956, checked in by tbretz, 20 years ago
*** empty log message ***
File size: 644 bytes
Line 
1#ifndef MARS_MEnergyEstimate
2#define MARS_MEnergyEstimate
3
4#ifndef MARS_MTask
5#include "MTask.h"
6#endif
7
8class MData;
9class MEnergyEst;
10
11class MEnergyEstimate : public MTask
12{
13private:
14 MData *fData; //->
15 MEnergyEst *fEnergy;
16
17 Int_t ReadEnv(const TEnv &env, TString prefix, Bool_t print=kFALSE);
18
19public:
20 MEnergyEstimate(const char *name=NULL, const char *title=NULL);
21 ~MEnergyEstimate();
22
23 Bool_t SetRule(const char *rule);
24
25 Int_t PreProcess(MParList *plist);
26 Int_t Process();
27
28 void SetVariables(const TArrayD &);
29
30 ClassDef(MEnergyEstimate, 0) // Task to estimate the energy by a rule
31};
32
33#endif
34
Note: See TracBrowser for help on using the repository browser.