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

Last change on this file since 9029 was 6869, checked in by tbretz, 20 years ago
*** empty log message ***
File size: 687 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 MHillas;
12
13class MHNewImagePar2 : public MH
14{
15private:
16 TH1F fHistBorder1; //
17 TH1F fHistBorder2; //
18
19 Float_t fMm2Deg;
20 Bool_t fUseMmScale;
21
22public:
23 MHNewImagePar2(const char *name=NULL, const char *title=NULL);
24
25 Bool_t SetupFill(const MParList *plist);
26 Bool_t Fill(const MParContainer *par, const Stat_t w=1);
27
28 void SetMmScale(Bool_t mmscale=kTRUE);
29 virtual void SetMm2Deg(Float_t mmdeg);
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.