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

Last change on this file since 1004 was 1004, checked in by tbretz, 23 years ago
*** empty log message ***
File size: 619 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#include <TH2.h>
14#endif
15
16class MHillas;
17
18class MHStarMap : public MH
19{
20private:
21 TH2F *fStarMap;
22
23 void PrepareDrawing() const;
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
33 void Draw(Option_t *opt=NULL);
34 TObject *DrawClone(Option_t *opt=NULL) const;
35
36 ClassDef(MHStarMap, 1) // Container to hold 2-dim histogram (starmap)
37};
38
39#endif
40
Note: See TracBrowser for help on using the repository browser.