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

Last change on this file since 8996 was 7538, checked in by tbretz, 19 years ago
*** empty log message ***
File size: 2.0 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 TH1F fHistConcCOG; // [ratio] concentration of the three pixels next to COG
28 TH1F fHistConcCore; // [ratio] concentration of signals inside or touching the ellipse
29
30 Float_t fMm2Deg;
31 Bool_t fUseMmScale;
32
33public:
34 MHNewImagePar(const char *name=NULL, const char *title=NULL);
35
36 Bool_t SetupFill(const MParList *plist);
37 Bool_t Fill(const MParContainer *par, const Stat_t w=1);
38
39 TH1 *GetHistByName(const TString name) const;
40 TObject *FindObject(const TObject *obj) const { return 0; }
41 TObject *FindObject(const char *name) const
42 {
43 return (TObject*)GetHistByName(name);
44 }
45
46 TH1F &GetHistLeakage1() { return fHistLeakage1; }
47 TH1F &GetHistLeakage2() { return fHistLeakage2; }
48
49 TH1F &GetHistUsedPix() { return fHistUsedPix; }
50 TH1F &GetHistCorePix() { return fHistCorePix; }
51
52 TH1F &GetHistUsedArea() { return fHistUsedArea; }
53 TH1F &GetHistCoreArea() { return fHistCoreArea; }
54
55 TH1F &GetHistConc() { return fHistConc; }
56 TH1F &GetHistConc1() { return fHistConc1; }
57 TH1F &GetHistConcCOG() { return fHistConcCOG; }
58 TH1F &GetHistConcCore() { return fHistConcCore; }
59
60 void SetMmScale(Bool_t mmscale=kTRUE);
61 virtual void SetMm2Deg(Float_t mmdeg);
62
63 void Draw(Option_t *opt="");
64 void Paint(Option_t *opt="");
65
66 ClassDef(MHNewImagePar, 2) // Histograms of new image parameters
67};
68
69#endif
70
71
Note: See TracBrowser for help on using the repository browser.