source: trunk/MagicSoft/Mars/mmontecarlo/MMcCT1CollectionAreaCalc.h@ 1823

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