Line | |
---|
1 | #ifndef MARS_MHAlphaEnergyTime
|
---|
2 | #define MARS_MHAlphaEnergyTime
|
---|
3 |
|
---|
4 | #ifndef MARS_MH
|
---|
5 | #include "MH.h"
|
---|
6 | #endif
|
---|
7 |
|
---|
8 | #ifndef ROOT_TH3
|
---|
9 | #include "TH3.h"
|
---|
10 | #endif
|
---|
11 |
|
---|
12 | #ifndef ROOT_TH2
|
---|
13 | #include "TH2.h"
|
---|
14 | #endif
|
---|
15 |
|
---|
16 | class MHillasSrc;
|
---|
17 | class MEnergyEst;
|
---|
18 | class MTime;
|
---|
19 | class TH2D;
|
---|
20 | class MParList;
|
---|
21 |
|
---|
22 | class MHAlphaEnergyTime : public MH
|
---|
23 | {
|
---|
24 | private:
|
---|
25 | MHillasSrc *fHillas; //!
|
---|
26 | MEnergyEst *fEnergy; //!
|
---|
27 | MTime *fTime; //!
|
---|
28 |
|
---|
29 | TH3D fHist;
|
---|
30 |
|
---|
31 | public:
|
---|
32 | MHAlphaEnergyTime(const char *name=NULL, const char *title=NULL);
|
---|
33 |
|
---|
34 | Bool_t SetupFill(const MParList *pList);
|
---|
35 | Bool_t Fill(const MParContainer *par, const Stat_t w=1);
|
---|
36 |
|
---|
37 | const TH3D *GetHist() { return &fHist; }
|
---|
38 | const TH3D *GetHist() const { return &fHist; }
|
---|
39 |
|
---|
40 | TH1 *GetHistByName(const TString name) { return &fHist; }
|
---|
41 |
|
---|
42 | void Draw(Option_t *option="");
|
---|
43 |
|
---|
44 | TH2D *IntegrateTime (const char *title, Bool_t Draw);
|
---|
45 | TH2D *IntegrateEest (const char *title, Bool_t Draw);
|
---|
46 | TH1D *IntegrateEestTime(const char *title, Bool_t Draw);
|
---|
47 |
|
---|
48 | ClassDef(MHAlphaEnergyTime, 0) //3D-histogram in alpha, Energy and time
|
---|
49 | };
|
---|
50 |
|
---|
51 | #endif
|
---|
52 |
|
---|
53 |
|
---|
54 |
|
---|
55 |
|
---|
56 |
|
---|
57 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.