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

Last change on this file since 5869 was 5869, checked in by tbretz, 20 years ago
*** empty log message ***
File size: 570 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
17public:
18 MEnergyEstimate(const char *name=NULL, const char *title=NULL);
19 ~MEnergyEstimate();
20
21 Bool_t SetRule(const char *rule);
22
23 Int_t PreProcess(MParList *plist);
24 Int_t Process();
25
26 void SetVariables(const TArrayD &);
27
28 ClassDef(MEnergyEstimate, 0) // Task to estimate the energy by a rule
29};
30
31#endif
32
Note: See TracBrowser for help on using the repository browser.