source: trunk/MagicSoft/Mars/mimage/MHNewImagePar.h@ 6869

Last change on this file since 6869 was 6869, checked in by tbretz, 20 years ago
*** empty log message ***
File size: 1.5 KB
Line 
1#ifndef MARS_MHNewImagePar
2#define MARS_MHNewImagePar
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 MHNewImagePar : public MH
14{
15private:
16 TH1F fHistLeakage1; //
17 TH1F fHistLeakage2; //
18
19 TH1F fHistUsedPix; // Number of used pixels
20 TH1F fHistCorePix; // Number of core pixels
21
22 TH1F fHistUsedArea; // Area of used pixels
23 TH1F fHistCoreArea; // Area of core pixels
24
25 TH1F fHistConc; // [ratio] concentration ratio: sum of the two highest pixels / fSize
26 TH1F fHistConc1; // [ratio] concentration ratio: sum of the highest pixel / fSize
27
28 Float_t fMm2Deg;
29 Bool_t fUseMmScale;
30
31public:
32 MHNewImagePar(const char *name=NULL, const char *title=NULL);
33
34 Bool_t SetupFill(const MParList *plist);
35 Bool_t Fill(const MParContainer *par, const Stat_t w=1);
36
37 TH1 *GetHistByName(const TString name);
38
39 TH1F &GetHistLeakage1() { return fHistLeakage1; }
40 TH1F &GetHistLeakage2() { return fHistLeakage2; }
41
42 TH1F &GetHistUsedPix() { return fHistUsedPix; }
43 TH1F &GetHistCorePix() { return fHistCorePix; }
44
45 TH1F &GetHistUsedArea() { return fHistUsedArea; }
46 TH1F &GetHistCoreArea() { return fHistCoreArea; }
47
48 TH1F &GetHistConc() { return fHistConc; }
49 TH1F &GetHistConc1() { return fHistConc1; }
50
51 void SetMmScale(Bool_t mmscale=kTRUE);
52 virtual void SetMm2Deg(Float_t mmdeg);
53
54 void Draw(Option_t *opt="");
55 void Paint(Option_t *opt="");
56
57 ClassDef(MHNewImagePar, 1) // Histograms of new image parameters
58};
59
60#endif
61
62
Note: See TracBrowser for help on using the repository browser.