Line | |
---|
1 | #ifndef MARS_MHPhi
|
---|
2 | #define MARS_MHPhi
|
---|
3 |
|
---|
4 | #ifndef MARS_MH
|
---|
5 | #include "MH.h"
|
---|
6 | #endif
|
---|
7 | #ifndef ROOT_TH1
|
---|
8 | #include <TH1.h>
|
---|
9 | #endif
|
---|
10 |
|
---|
11 | class MHillas;
|
---|
12 | class MSrcPosCam;
|
---|
13 | class MParameterD;
|
---|
14 |
|
---|
15 | class MHPhi : public MH
|
---|
16 | {
|
---|
17 | private:
|
---|
18 | TH1D fHPhi;
|
---|
19 |
|
---|
20 | MHillas *fHillas; //!
|
---|
21 | MSrcPosCam *fSrcPos; //!
|
---|
22 | MParameterD *fDisp; //!
|
---|
23 |
|
---|
24 | Double_t fConvMm2Deg; //!
|
---|
25 |
|
---|
26 | Int_t fNumBinsSignal;
|
---|
27 | Float_t fThetaCut;
|
---|
28 | Float_t fDistSrc;
|
---|
29 | //Bool_t fOnOffMode;
|
---|
30 |
|
---|
31 | //Bool_t fIsOffLoop; //!
|
---|
32 |
|
---|
33 | public:
|
---|
34 | MHPhi(const char *name=NULL, const char *title=NULL);
|
---|
35 |
|
---|
36 | Bool_t SetupFill(const MParList *plist);
|
---|
37 | Bool_t Fill(const MParContainer *par, const Stat_t w=1);
|
---|
38 |
|
---|
39 | void Draw(Option_t *opt="");
|
---|
40 | void Paint(Option_t *opt="");
|
---|
41 |
|
---|
42 | ClassDef(MHPhi, 1) // Histogram to display information about rate
|
---|
43 | };
|
---|
44 |
|
---|
45 | #endif
|
---|
46 |
|
---|
47 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.