source: trunk/MagicSoft/Mars/mhist/MHNewImagePar.h@ 1872

Last change on this file since 1872 was 1872, checked in by wittek, 22 years ago
*** empty log message ***
File size: 896 bytes
Line 
1#ifndef MARS_MHNewImagePar
2#define MARS_MHNewImagePar
3
4#ifndef MARS_MH
5#include "MH.h"
6#endif
7
8class TH1F;
9class MHillas;
10
11class MHNewImagePar : public MH
12{
13private:
14 TH1F *fLeakage1; //->
15 TH1F *fLeakage2; //->
16
17 Float_t fMm2Deg;
18 Bool_t fUseMmScale;
19
20public:
21 MHNewImagePar(const char *name=NULL, const char *title=NULL);
22 ~MHNewImagePar();
23
24 void SetMmScale(Bool_t mmscale=kTRUE);
25 void SetMm2Deg(Float_t mmdeg);
26
27 Bool_t SetupFill(const MParList *pList);
28 Bool_t Fill(const MParContainer *par);
29
30 TH1 *GetHistByName(const TString name);
31
32 TH1F *GetHistLeakage1() { return fLeakage1; }
33 TH1F *GetHistLeakage2() { return fLeakage2; }
34
35 void Draw(Option_t *opt=NULL);
36 TObject *DrawClone(Option_t *opt=NULL) const;
37
38 ClassDef(MHNewImagePar, 1) // Container which holds histograms for the new image parameters
39};
40
41#endif
42
43
Note: See TracBrowser for help on using the repository browser.