source: trunk/MagicSoft/Mars/mmontecarlo/MMcCollectionAreaCalc.h@ 1022

Last change on this file since 1022 was 1016, checked in by tbretz, 23 years ago
*** empty log message ***
File size: 683 bytes
Line 
1#ifndef MARS_MMcCollectionAreaCalc
2#define MARS_MMcCollectionAreaCalc
3
4#ifndef MARS_MTask
5#include "MTask.h"
6#endif
7
8class MParList;
9class MMcEvt;
10class MMcTrig;
11class MHMcCollectionArea;
12
13class MMcCollectionAreaCalc : public MTask
14{
15private:
16 const MMcEvt *fMcEvt;
17 const MMcTrig *fMcTrig;
18
19 MHMcCollectionArea *fCollArea;
20
21 TString fObjName;
22
23public:
24 MMcCollectionAreaCalc(const char *input=NULL,
25 const char *name=NULL, const char *title=NULL);
26
27 Bool_t PreProcess(MParList *pList);
28 Bool_t Process();
29 Bool_t PostProcess();
30
31 ClassDef(MMcCollectionAreaCalc, 0) // Task to calculate the collection area histogram
32};
33
34#endif
35
Note: See TracBrowser for help on using the repository browser.