source: trunk/MagicSoft/Mars/mimage/MNewImagePar.h@ 7224

Last change on this file since 7224 was 6855, checked in by tbretz, 20 years ago
*** empty log message ***
File size: 2.2 KB
Line 
1#ifndef MARS_MNewImagePar
2#define MARS_MNewImagePar
3
4#ifndef MARS_MParContainer
5#include "MParContainer.h"
6#endif
7
8class MHillas;
9class MGeomCam;
10class MSignalCam;
11
12class MNewImagePar : public MParContainer
13{
14private:
15 // FIXME: MOVE ALL PARAMETRS WHICH DOES'T DEPEND ON THE IMAGE
16 // CLEANING TO A NEW CLASS!
17 Float_t fLeakage1; // (photons in most outer ring of pixels) over fSize
18 Float_t fLeakage2; // (photons in the 2 outer rings of pixels) over fSize
19 Float_t fInnerLeakage1; // (photons in most outer rings of inner pixels) over fInnerSize
20 Float_t fInnerLeakage2; // (photons in the 2 outer rings of inner pixels) over fInnerSize
21 Float_t fInnerSize; //
22
23 Float_t fConc; // [ratio] concentration ratio: sum of the two highest pixels / fSize
24 Float_t fConc1; // [ratio] concentration ratio: sum of the highest pixel / fSize
25
26 Float_t fUsedArea; // Area of pixels which survived the image cleaning
27 Float_t fCoreArea; // Area of core pixels
28 Short_t fNumUsedPixels; // Number of pixels which survived the image cleaning
29 Short_t fNumCorePixels; // number of core pixels
30
31public:
32 MNewImagePar(const char *name=NULL, const char *title=NULL);
33
34 void Reset();
35
36 Float_t GetLeakage1() const { return fLeakage1; }
37 Float_t GetLeakage2() const { return fLeakage2; }
38
39 Float_t GetInnerLeakage1() const { return fInnerLeakage1; }
40 Float_t GetInnerLeakage2() const { return fInnerLeakage2; }
41 Float_t GetInnerSize() const { return fInnerSize; }
42
43 Float_t GetConc() const { return fConc; }
44 Float_t GetConc1() const { return fConc1; }
45
46 Short_t GetNumUsedPixels() const { return fNumUsedPixels; }
47 Short_t GetNumCorePixels() const { return fNumCorePixels; }
48
49 Float_t GetUsedArea() const { return fUsedArea; }
50 Float_t GetCoreArea() const { return fCoreArea; }
51
52 void Print(Option_t *opt=NULL) const;
53 void Print(const MGeomCam &geom) const;
54
55 void Calc(const MGeomCam &geom, const MSignalCam &evt,
56 const MHillas &hillas, Int_t island=-1);
57
58 ClassDef(MNewImagePar, 4) // Container to hold new image parameters
59};
60
61#endif
Note: See TracBrowser for help on using the repository browser.