|
Last change
on this file since 989 was 970, checked in by tbretz, 24 years ago |
|
*** empty log message ***
|
-
Property svn:executable
set to
*
|
|
File size:
755 bytes
|
| Line | |
|---|
| 1 | #ifndef MHHILLAS_H
|
|---|
| 2 | #define MHHILLAS_H
|
|---|
| 3 |
|
|---|
| 4 | #ifndef MAGIC_H
|
|---|
| 5 | #include "MAGIC.h"
|
|---|
| 6 | #endif
|
|---|
| 7 |
|
|---|
| 8 | #ifndef MH_H
|
|---|
| 9 | #include "MH.h"
|
|---|
| 10 | #endif
|
|---|
| 11 |
|
|---|
| 12 | class TH1F;
|
|---|
| 13 | class MHillas;
|
|---|
| 14 |
|
|---|
| 15 | class MHHillas : public MH
|
|---|
| 16 | {
|
|---|
| 17 | private:
|
|---|
| 18 | TH1F *fAlpha;
|
|---|
| 19 | TH1F *fWidth;
|
|---|
| 20 | TH1F *fLength;
|
|---|
| 21 | TH1F *fDist;
|
|---|
| 22 |
|
|---|
| 23 | public:
|
|---|
| 24 | MHHillas(const char *name=NULL, const char *title=NULL);
|
|---|
| 25 | ~MHHillas();
|
|---|
| 26 |
|
|---|
| 27 | void Fill(const MParContainer *par);
|
|---|
| 28 |
|
|---|
| 29 | TH1F *GetHistAlpha() { return fAlpha; }
|
|---|
| 30 | TH1F *GetHistWidth() { return fWidth; }
|
|---|
| 31 | TH1F *GetHistLength() { return fLength; }
|
|---|
| 32 | TH1F *GetHistDist() { return fDist; }
|
|---|
| 33 |
|
|---|
| 34 | void Draw(Option_t *opt=NULL);
|
|---|
| 35 | TObject *DrawClone(Option_t *opt=NULL) const;
|
|---|
| 36 |
|
|---|
| 37 | ClassDef(MHHillas, 1) // Container which hilds hostograms for the Hillas parameters
|
|---|
| 38 | };
|
|---|
| 39 |
|
|---|
| 40 | #endif
|
|---|
| 41 |
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.