Line | |
---|
1 | #ifndef MARS_MHNewImagePar
|
---|
2 | #define MARS_MHNewImagePar
|
---|
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 |
|
---|
13 | class MHNewImagePar : public MH
|
---|
14 | {
|
---|
15 | private:
|
---|
16 | TH1F fHistLeakage1; //
|
---|
17 | TH1F fHistLeakage2; //
|
---|
18 |
|
---|
19 | TH1F fHistUsedPix; // Number of used pixels
|
---|
20 | TH1F fHistCorePix; // Number of core pixels
|
---|
21 |
|
---|
22 | TH1F fHistUsedArea; // Area of used pixels
|
---|
23 | TH1F fHistCoreArea; // Area of core pixels
|
---|
24 |
|
---|
25 | TH1F fHistConc; // [ratio] concentration ratio: sum of the two highest pixels / fSize
|
---|
26 | TH1F fHistConc1; // [ratio] concentration ratio: sum of the highest pixel / fSize
|
---|
27 |
|
---|
28 | public:
|
---|
29 | MHNewImagePar(const char *name=NULL, const char *title=NULL);
|
---|
30 |
|
---|
31 | Bool_t SetupFill(const MParList *plist);
|
---|
32 | Bool_t Fill(const MParContainer *par, const Stat_t w=1);
|
---|
33 |
|
---|
34 | TH1 *GetHistByName(const TString name);
|
---|
35 |
|
---|
36 | TH1F &GetHistLeakage1() { return fHistLeakage1; }
|
---|
37 | TH1F &GetHistLeakage2() { return fHistLeakage2; }
|
---|
38 |
|
---|
39 | TH1F &GetHistUsedPix() { return fHistUsedPix; }
|
---|
40 | TH1F &GetHistCorePix() { return fHistCorePix; }
|
---|
41 |
|
---|
42 | TH1F &GetHistUsedArea() { return fHistUsedArea; }
|
---|
43 | TH1F &GetHistCoreArea() { return fHistCoreArea; }
|
---|
44 |
|
---|
45 | TH1F &GetHistConc() { return fHistConc; }
|
---|
46 | TH1F &GetHistConc1() { return fHistConc1; }
|
---|
47 |
|
---|
48 | void Draw(Option_t *opt="");
|
---|
49 | void Paint(Option_t *opt="");
|
---|
50 |
|
---|
51 | ClassDef(MHNewImagePar, 1) // Histograms of new image parameters
|
---|
52 | };
|
---|
53 |
|
---|
54 | #endif
|
---|
55 |
|
---|
56 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.