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

Last change on this file since 1207 was 1207, checked in by tbretz, 23 years ago
*** empty log message ***
File size: 585 bytes
Line 
1#ifndef MARS_MHStarMap
2#define MARS_MHStarMap
3
4#ifndef MARS_MH
5#include "MH.h"
6#endif
7
8#ifndef ROOT_TH2
9#include <TH2.h>
10#endif
11
12class MHillas;
13
14class MHStarMap : public MH
15{
16private:
17 TH2F *fStarMap;
18
19 void PrepareDrawing() const;
20
21public:
22 MHStarMap(const char *name=NULL, const char *title=NULL);
23 ~MHStarMap();
24
25 Bool_t Fill(const MParContainer *par);
26
27 TH2F *GetHist() { return fStarMap; }
28
29 void Draw(Option_t *opt=NULL);
30 TObject *DrawClone(Option_t *opt=NULL) const;
31
32 ClassDef(MHStarMap, 1) // Container to hold 2-dim histogram (starmap)
33};
34
35#endif
Note: See TracBrowser for help on using the repository browser.