Line | |
---|
1 | #ifndef MARS_MHNewImagePar
|
---|
2 | #define MARS_MHNewImagePar
|
---|
3 |
|
---|
4 | #ifndef MARS_MH
|
---|
5 | #include "MH.h"
|
---|
6 | #endif
|
---|
7 |
|
---|
8 | class TH1F;
|
---|
9 | class MHillas;
|
---|
10 |
|
---|
11 | class MHNewImagePar : public MH
|
---|
12 | {
|
---|
13 | private:
|
---|
14 | TH1F *fLeakage1; //->
|
---|
15 | TH1F *fLeakage2; //->
|
---|
16 |
|
---|
17 | Float_t fMm2Deg;
|
---|
18 | Bool_t fUseMmScale;
|
---|
19 |
|
---|
20 | public:
|
---|
21 | MHNewImagePar(const char *name=NULL, const char *title=NULL);
|
---|
22 | ~MHNewImagePar();
|
---|
23 |
|
---|
24 | void SetMmScale(Bool_t mmscale=kTRUE);
|
---|
25 | void SetMm2Deg(Float_t mmdeg);
|
---|
26 |
|
---|
27 | Bool_t SetupFill(const MParList *pList);
|
---|
28 | Bool_t Fill(const MParContainer *par);
|
---|
29 |
|
---|
30 | TH1 *GetHistByName(const TString name);
|
---|
31 |
|
---|
32 | TH1F *GetHistLeakage1() { return fLeakage1; }
|
---|
33 | TH1F *GetHistLeakage2() { return fLeakage2; }
|
---|
34 |
|
---|
35 | void Draw(Option_t *opt=NULL);
|
---|
36 | TObject *DrawClone(Option_t *opt=NULL) const;
|
---|
37 |
|
---|
38 | ClassDef(MHNewImagePar, 1) // Container which holds histograms for the new image parameters
|
---|
39 | };
|
---|
40 |
|
---|
41 | #endif
|
---|
42 |
|
---|
43 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.