| 1 | #ifndef MARS_MNewImagePar
|
|---|
| 2 | #define MARS_MNewImagePar
|
|---|
| 3 |
|
|---|
| 4 | #ifndef MARS_MParContainer
|
|---|
| 5 | #include "MParContainer.h"
|
|---|
| 6 | #endif
|
|---|
| 7 |
|
|---|
| 8 | class MHillas;
|
|---|
| 9 | class MGeomCam;
|
|---|
| 10 | class MCerPhotEvt;
|
|---|
| 11 |
|
|---|
| 12 | class MNewImagePar : public MParContainer
|
|---|
| 13 | {
|
|---|
| 14 | private:
|
|---|
| 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 |
|
|---|
| 31 | public:
|
|---|
| 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 GetConc() const { return fConc; }
|
|---|
| 40 | Float_t GetConc1() const { return fConc1; }
|
|---|
| 41 |
|
|---|
| 42 | Short_t GetNumUsedPixels() const { return fNumUsedPixels; }
|
|---|
| 43 | Short_t GetNumCorePixels() const { return fNumCorePixels; }
|
|---|
| 44 |
|
|---|
| 45 | Float_t GetUsedArea() const { return fUsedArea; }
|
|---|
| 46 | Float_t GetCoreArea() const { return fCoreArea; }
|
|---|
| 47 |
|
|---|
| 48 | Short_t GetNumSaturatedPixels() const { return fNumSaturatedPixels; }
|
|---|
| 49 | Short_t GetNumHGSaturatedPixels() const { return fNumHGSaturatedPixels; }
|
|---|
| 50 |
|
|---|
| 51 | void Print(Option_t *opt=NULL) const;
|
|---|
| 52 | void Print(const MGeomCam &geom) const;
|
|---|
| 53 |
|
|---|
| 54 | void Calc(const MGeomCam &geom, const MCerPhotEvt &evt,
|
|---|
| 55 | const MHillas &hillas);
|
|---|
| 56 |
|
|---|
| 57 | ClassDef(MNewImagePar, 3) // Container to hold new image parameters
|
|---|
| 58 | };
|
|---|
| 59 |
|
|---|
| 60 | #endif
|
|---|