| Line | |
|---|
| 1 | #ifndef MARS_MHHillasSrc
|
|---|
| 2 | #define MARS_MHHillasSrc
|
|---|
| 3 |
|
|---|
| 4 | #ifndef MARS_MH
|
|---|
| 5 | #include "MH.h"
|
|---|
| 6 | #endif
|
|---|
| 7 |
|
|---|
| 8 | class TH1F;
|
|---|
| 9 | class MHillas;
|
|---|
| 10 |
|
|---|
| 11 | class MHHillasSrc : public MH
|
|---|
| 12 | {
|
|---|
| 13 | private:
|
|---|
| 14 | TH1F *fAlpha;
|
|---|
| 15 | TH1F *fDist;
|
|---|
| 16 |
|
|---|
| 17 | public:
|
|---|
| 18 | MHHillasSrc(const char *name=NULL, const char *title=NULL);
|
|---|
| 19 | ~MHHillasSrc();
|
|---|
| 20 |
|
|---|
| 21 | void Fill(const MParContainer *par);
|
|---|
| 22 |
|
|---|
| 23 | TH1F *GetHistAlpha() { return fAlpha; }
|
|---|
| 24 | TH1F *GetHistDist() { return fDist; }
|
|---|
| 25 |
|
|---|
| 26 | void Draw(Option_t *opt=NULL);
|
|---|
| 27 | TObject *DrawClone(Option_t *opt=NULL) const;
|
|---|
| 28 |
|
|---|
| 29 | ClassDef(MHHillasSrc, 1) // Container which hilds hostograms for the Hillas parameters
|
|---|
| 30 | };
|
|---|
| 31 |
|
|---|
| 32 | #endif
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.