Last change
on this file since 1861 was 1668, checked in by tbretz, 22 years ago |
*** empty log message ***
|
-
Property svn:executable
set to
*
|
File size:
1.2 KB
|
Line | |
---|
1 | #ifndef MARS_MHMcCollectionArea
|
---|
2 | #define MARS_MHMcCollectionArea
|
---|
3 |
|
---|
4 | #ifndef MARS_MParContainer
|
---|
5 | #include "MParContainer.h"
|
---|
6 | #endif
|
---|
7 |
|
---|
8 | class TH1D;
|
---|
9 | class TH2D;
|
---|
10 |
|
---|
11 | class MHMcEfficiency;
|
---|
12 | class MHMcEnergyImpact;
|
---|
13 |
|
---|
14 | class MHMcCollectionArea : public MParContainer
|
---|
15 | {
|
---|
16 | private:
|
---|
17 | TH2D *fHistAll; //! all simulated showers
|
---|
18 | TH2D *fHistSel; //! the selected showers
|
---|
19 |
|
---|
20 | TH1D *fHistCol; // the collection area
|
---|
21 |
|
---|
22 | void Calc(TH2D &hsel, TH2D &hall);
|
---|
23 |
|
---|
24 | public:
|
---|
25 | MHMcCollectionArea(const char *name=NULL, const char *title=NULL);
|
---|
26 | ~MHMcCollectionArea();
|
---|
27 |
|
---|
28 | void FillAll(Double_t energy, Double_t radius);
|
---|
29 | void FillSel(Double_t energy, Double_t radius);
|
---|
30 |
|
---|
31 | void DrawAll(Option_t *option="");
|
---|
32 | void DrawSel(Option_t *option="");
|
---|
33 |
|
---|
34 | const TH1D *GetHist() { return fHistCol; }
|
---|
35 | const TH1D *GetHist() const { return fHistCol; }
|
---|
36 |
|
---|
37 | void Draw(Option_t *option="");
|
---|
38 | TObject *DrawClone(Option_t *option="") const;
|
---|
39 |
|
---|
40 | void CalcEfficiency();
|
---|
41 | void CalcEfficiency(UInt_t allevts, Float_t theta);
|
---|
42 |
|
---|
43 | void Calc(const MHMcEnergyImpact &mcsel, const MHMcEnergyImpact &mcall);
|
---|
44 | void Calc(const MHMcEfficiency &heff);
|
---|
45 |
|
---|
46 | ClassDef(MHMcCollectionArea, 1) // Data Container to calculate Collection Area
|
---|
47 | };
|
---|
48 |
|
---|
49 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.