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

Last change on this file since 9340 was 9340, checked in by tbretz, 16 years ago
*** empty log message ***
File size: 666 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
22 Float_t fMm2Deg;
23 Bool_t fUseMmScale;
24
25public:
26 MHNewImagePar2(const char *name=NULL, const char *title=NULL);
27
28 Bool_t SetupFill(const MParList *plist);
29 Int_t Fill(const MParContainer *par, const Stat_t w=1);
30
31 void Draw(Option_t *opt="");
32
33 ClassDef(MHNewImagePar2, 1) // Histograms of new image parameters
34};
35
36#endif
37
38
Note: See TracBrowser for help on using the repository browser.