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

Last change on this file since 1902 was 1300, checked in by tbretz, 22 years ago
*** empty log message ***
File size: 838 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
23 UInt_t fTotalNumSimulatedShowers;
24 UInt_t fCorsikaVersion;
25 Float_t fTheta;
26
27 Bool_t fAllEvtsTriggered;
28
29public:
30 MMcCollectionAreaCalc(const char *input=NULL,
31 const char *name=NULL, const char *title=NULL);
32
33 Bool_t ReInit(MParList *plist);
34
35 Bool_t PreProcess(MParList *pList);
36 Bool_t Process();
37 Bool_t PostProcess();
38
39 ClassDef(MMcCollectionAreaCalc, 0) // Task to calculate the collection area histogram
40};
41
42#endif
43
Note: See TracBrowser for help on using the repository browser.