Line | |
---|
1 | #ifndef MARS_MHHillasExt
|
---|
2 | #define MARS_MHHillasExt
|
---|
3 |
|
---|
4 | #ifndef ROOT_TH1
|
---|
5 | #include <TH1.h>
|
---|
6 | #endif
|
---|
7 | #ifndef MARS_MH
|
---|
8 | #include "MH.h"
|
---|
9 | #endif
|
---|
10 |
|
---|
11 | class MHillasExt;
|
---|
12 |
|
---|
13 | class MHHillasExt : public MH
|
---|
14 | {
|
---|
15 | private:
|
---|
16 | MHillasExt *fHillasExt; //! Pointer to the MHillasExt container
|
---|
17 |
|
---|
18 | TH1F fHAsym; // [mm] fDist minus dist: center of ellipse, highest pixel
|
---|
19 | TH1F fHM3Long; // [mm] 3rd moment (e-weighted) along major axis
|
---|
20 | TH1F fHM3Trans; // [mm] 3rd moment (e-weighted) along minor axis
|
---|
21 | TH1F fHMaxDist; // [mm] Distance between shower center maximum distant pixel
|
---|
22 |
|
---|
23 | Float_t fMm2Deg;
|
---|
24 | Bool_t fUseMmScale;
|
---|
25 |
|
---|
26 | TString fHilName;
|
---|
27 |
|
---|
28 | public:
|
---|
29 | MHHillasExt(const char *name=NULL, const char *title=NULL);
|
---|
30 |
|
---|
31 | void SetHillasName(const char *name) { fHilName = name; }
|
---|
32 |
|
---|
33 | void SetMmScale(Bool_t mmscale=kTRUE);
|
---|
34 | virtual void SetMm2Deg(Float_t mmdeg);
|
---|
35 |
|
---|
36 | Bool_t SetupFill(const MParList *pList);
|
---|
37 | Bool_t Fill(const MParContainer *par, const Stat_t w=1);
|
---|
38 |
|
---|
39 | TH1 *GetHistByName(const TString name) const;
|
---|
40 | TObject *FindObject(const TObject *obj) const { return 0; }
|
---|
41 | TObject *FindObject(const char *name) const
|
---|
42 | {
|
---|
43 | return (TObject*)GetHistByName(name);
|
---|
44 | }
|
---|
45 |
|
---|
46 | void Draw(Option_t *opt=NULL);
|
---|
47 |
|
---|
48 | ClassDef(MHHillasExt, 1) // Container which holds histograms for the extended hillas parameters
|
---|
49 | };
|
---|
50 |
|
---|
51 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.