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 |
|
---|
10 | class MParList;
|
---|
11 | class MMcEvt;
|
---|
12 | class MMcTrig;
|
---|
13 | class MHMcCollectionArea;
|
---|
14 |
|
---|
15 | class MMcCollectionAreaCalc : public MTask
|
---|
16 | {
|
---|
17 | private:
|
---|
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 |
|
---|
36 | public:
|
---|
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.