Line | |
---|
1 | #ifndef MHSTARMAP_H
|
---|
2 | #define MHSTARMAP_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 | #ifndef ROOT_TH2
|
---|
13 | // what's the reason that we need this here? cint complains about it
|
---|
14 | // if it is missing...
|
---|
15 | #include <TH2.h>
|
---|
16 | #endif
|
---|
17 |
|
---|
18 | class MHillas;
|
---|
19 |
|
---|
20 | class MHStarMap : public MParContainer
|
---|
21 | {
|
---|
22 | private:
|
---|
23 | TH2F *fStarMap;
|
---|
24 |
|
---|
25 | public:
|
---|
26 | MHStarMap(const char *name=NULL, const char *title=NULL);
|
---|
27 | ~MHStarMap();
|
---|
28 |
|
---|
29 | void Fill(MHillas *par);
|
---|
30 |
|
---|
31 | TH2F *GetHist() { return fStarMap; }
|
---|
32 | void Draw(Option_t *opt=NULL);
|
---|
33 |
|
---|
34 | ClassDef(MHStarMap, 1) // Container to hold 2-dim histogram (starmap)
|
---|
35 | };
|
---|
36 |
|
---|
37 | #endif
|
---|
38 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.