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

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