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 | public:
|
---|
18 | MHNewImagePar(const char *name=NULL, const char *title=NULL);
|
---|
19 | ~MHNewImagePar();
|
---|
20 |
|
---|
21 | Bool_t Fill(const MParContainer *par, Double_t w=1);
|
---|
22 |
|
---|
23 | TH1 *GetHistByName(const TString name);
|
---|
24 |
|
---|
25 | TH1F *GetHistLeakage1() { return fLeakage1; }
|
---|
26 | TH1F *GetHistLeakage2() { return fLeakage2; }
|
---|
27 |
|
---|
28 | void Draw(Option_t *opt=NULL);
|
---|
29 |
|
---|
30 | ClassDef(MHNewImagePar, 1) // Histograms of new image parameters
|
---|
31 | };
|
---|
32 |
|
---|
33 | #endif
|
---|
34 |
|
---|
35 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.