source: trunk/MagicSoft/Mars/mhist/MHStarMap.h@ 887

Last change on this file since 887 was 887, checked in by tbretz, 23 years ago
*** empty log message ***
File size: 640 bytes
Line 
1#ifndef MHSTARMAP_H
2#define MHSTARMAP_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#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
18class MHillas;
19
20class MHStarMap : public MH
21{
22private:
23 TH2F *fStarMap;
24
25public:
26 MHStarMap(const char *name=NULL, const char *title=NULL);
27 ~MHStarMap();
28
29 void Fill(const MParContainer *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.