Last change
on this file since 852 was 712, checked in by tbretz, 24 years ago |
*** empty log message ***
|
-
Property svn:executable
set to
*
|
File size:
726 bytes
|
Line | |
---|
1 | #ifndef MHHILLAS_H
|
---|
2 | #define MHHILLAS_H
|
---|
3 |
|
---|
4 | #ifndef MAGIC_H
|
---|
5 | #include "MAGIC.h"
|
---|
6 | #endif
|
---|
7 |
|
---|
8 | #ifndef MPARCONTAINER_H
|
---|
9 | #include "MParContainer.h"
|
---|
10 | #endif
|
---|
11 |
|
---|
12 | class TH1F;
|
---|
13 | class MHillas;
|
---|
14 |
|
---|
15 | class MHHillas : public MParContainer
|
---|
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(MHillas *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 |
|
---|
36 | ClassDef(MHHillas, 1) // Container which holds hostograms for the Hillas parameters
|
---|
37 | };
|
---|
38 |
|
---|
39 | #endif
|
---|
40 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.