| Line | |
|---|
| 1 | #ifndef MARS_MEnergyEstimate
|
|---|
| 2 | #define MARS_MEnergyEstimate
|
|---|
| 3 |
|
|---|
| 4 | #ifndef MARS_MTask
|
|---|
| 5 | #include "MTask.h"
|
|---|
| 6 | #endif
|
|---|
| 7 |
|
|---|
| 8 | class MData;
|
|---|
| 9 | class MEnergyEst;
|
|---|
| 10 |
|
|---|
| 11 | class MEnergyEstimate : public MTask
|
|---|
| 12 | {
|
|---|
| 13 | private:
|
|---|
| 14 | MData *fData; //->
|
|---|
| 15 | MEnergyEst *fEnergy;
|
|---|
| 16 |
|
|---|
| 17 | Int_t ReadEnv(const TEnv &env, TString prefix, Bool_t print=kFALSE);
|
|---|
| 18 |
|
|---|
| 19 | public:
|
|---|
| 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.