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

Last change on this file since 4693 was 4143, checked in by rico, 20 years ago
Changelog
File size: 2.4 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 MCerPhotEvt;
11
12class MNewImagePar : public MParContainer
13{
14private:
15 Float_t fLeakage1; // (photons in most outer ring of pixels) over fSize
16 Float_t fLeakage2; // (photons in the 2 outer rings of pixels) over fSize
17 Float_t fInnerLeakage1; // (photons in most outer rings of inner pixels) over fInnerSize
18 Float_t fInnerLeakage2; // (photons in the 2 outer rings of inner pixels) over fInnerSize
19 Float_t fInnerSize; //
20
21 Float_t fConc; // [ratio] concentration ratio: sum of the two highest pixels / fSize
22 Float_t fConc1; // [ratio] concentration ratio: sum of the highest pixel / fSize
23
24 Float_t fUsedArea; // Area of pixels which survived the image cleaning
25 Float_t fCoreArea; // Area of core pixels
26 Short_t fNumUsedPixels; // Number of pixels which survived the image cleaning
27 Short_t fNumCorePixels; // number of core pixels
28 Short_t fNumHGSaturatedPixels; // number of pixels with saturating hi-gains
29 Short_t fNumSaturatedPixels; // number of pixels with saturating lo-gains
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 Short_t GetNumSaturatedPixels() const { return fNumSaturatedPixels; }
53 Short_t GetNumHGSaturatedPixels() const { return fNumHGSaturatedPixels; }
54
55 void Print(Option_t *opt=NULL) const;
56 void Print(const MGeomCam &geom) const;
57
58 void Calc(const MGeomCam &geom, const MCerPhotEvt &evt,
59 const MHillas &hillas);
60
61 ClassDef(MNewImagePar, 3) // Container to hold new image parameters
62};
63
64#endif
Note: See TracBrowser for help on using the repository browser.