source: trunk/MagicSoft/Mars/mimage/MHNewImagePar2.h@ 9341

Last change on this file since 9341 was 9341, checked in by tbretz, 16 years ago
*** empty log message ***
File size: 619 bytes
Line 
1#ifndef MARS_MHNewImagePar2
2#define MARS_MHNewImagePar2
3
4#ifndef MARS_MH
5#include "MH.h"
6#endif
7#ifndef ROOT_TH1
8#include <TH1.h>
9#endif
10
11class MGeomCam;
12class MHillas;
13
14class MHNewImagePar2 : public MH
15{
16private:
17 MGeomCam *fGeom; //! conversion mm to deg
18
19 TH1F fHistBorder1; //
20 TH1F fHistBorder2; //
21
22public:
23 MHNewImagePar2(const char *name=NULL, const char *title=NULL);
24
25 Bool_t SetupFill(const MParList *plist);
26 Int_t Fill(const MParContainer *par, const Stat_t w=1);
27
28 void Draw(Option_t *opt="");
29
30 ClassDef(MHNewImagePar2, 1) // Histograms of new image parameters
31};
32
33#endif
34
35
Note: See TracBrowser for help on using the repository browser.