| 1 | #ifndef MARS_MHCalibrationCam | 
|---|
| 2 | #define MARS_MHCalibrationCam | 
|---|
| 3 |  | 
|---|
| 4 | #ifndef ROOT_TObjArray | 
|---|
| 5 | #include <TObjArray.h> | 
|---|
| 6 | #endif | 
|---|
| 7 |  | 
|---|
| 8 | #ifndef ROOT_TArrayI | 
|---|
| 9 | #include <TArrayI.h> | 
|---|
| 10 | #endif | 
|---|
| 11 |  | 
|---|
| 12 | #ifndef ROOT_TArrayF | 
|---|
| 13 | #include <TArrayF.h> | 
|---|
| 14 | #endif | 
|---|
| 15 |  | 
|---|
| 16 | #ifndef MARS_MH | 
|---|
| 17 | #include "MH.h" | 
|---|
| 18 | #endif | 
|---|
| 19 | #ifndef MARS_MCamEvent | 
|---|
| 20 | #include "MCamEvent.h" | 
|---|
| 21 | #endif | 
|---|
| 22 |  | 
|---|
| 23 | #ifndef MARS_MBadPixelsPix | 
|---|
| 24 | #include "MBadPixelsPix.h" | 
|---|
| 25 | #endif | 
|---|
| 26 |  | 
|---|
| 27 | class TText; | 
|---|
| 28 | class TArrayI; | 
|---|
| 29 | class TArrayF; | 
|---|
| 30 | class MHGausEvents; | 
|---|
| 31 | class MGeomCam; | 
|---|
| 32 | class MRawRunHeader; | 
|---|
| 33 | class MCalibrationCam; | 
|---|
| 34 | class MCalibrationPix; | 
|---|
| 35 | class MBadPixelsCam; | 
|---|
| 36 | class MBadPixelsPix; | 
|---|
| 37 | class MHCalibrationCam : public MH, public MCamEvent | 
|---|
| 38 | { | 
|---|
| 39 |  | 
|---|
| 40 | private: | 
|---|
| 41 |  | 
|---|
| 42 | static const Int_t fgAverageNbins;     //! The default for fAverageNbins    (now set to: 2000) | 
|---|
| 43 | static const Int_t fgPulserFrequency;  //! The default for fPulserFrequency (now set to: 500) | 
|---|
| 44 |  | 
|---|
| 45 | protected: | 
|---|
| 46 |  | 
|---|
| 47 | TArrayI    fAverageAreaNum;           // Number of pixels in average pixels per area | 
|---|
| 48 | TArrayF    fAverageAreaRelSigma;      // Re-normalized relative sigmas in average pixels per area | 
|---|
| 49 | TArrayF    fAverageAreaRelSigmaVar;   // Variance Re-normalized relative sigmas in average pixels per area | 
|---|
| 50 | TArrayI    fAverageAreaSat;           // Number of saturated slices in average pixels per area | 
|---|
| 51 | TArrayF    fAverageAreaSigma;         // Re-normalized sigmas in average pixels per area | 
|---|
| 52 | TArrayF    fAverageAreaSigmaVar;      // Variance Re-normalized sigmas in average pixels per area | 
|---|
| 53 | Int_t      fAverageNbins;             // Number of bins for the average histograms | 
|---|
| 54 | TObjArray *fAverageHiGainAreas;       //-> Array of calibration pixels, one per pixel area | 
|---|
| 55 | TObjArray *fAverageHiGainSectors;     //-> Array of calibration pixels, one per camera sector | 
|---|
| 56 | TObjArray *fAverageLoGainAreas;       //-> Array of calibration pixels, one per pixel area | 
|---|
| 57 | TObjArray *fAverageLoGainSectors;     //-> Array of calibration pixels, one per camera sector | 
|---|
| 58 | TArrayI    fAverageSectorNum;         // Number of pixels in average pixels per sector | 
|---|
| 59 | TArrayI    fRunNumbers;               // Numbers of runs used | 
|---|
| 60 |  | 
|---|
| 61 | MBadPixelsCam    *fBadPixels;         //!  Bad Pixels storage container | 
|---|
| 62 | MCalibrationCam  *fCam;               //!  Calibration Cam with the results | 
|---|
| 63 | MGeomCam         *fGeom;              //!  Camera geometry | 
|---|
| 64 | MRawRunHeader    *fRunHeader;         //!  Run Header | 
|---|
| 65 |  | 
|---|
| 66 | TObjArray *fHiGainArray;              //-> Array of calibration pixels, one per pixel | 
|---|
| 67 | TObjArray *fLoGainArray;              //-> Array of calibration pixels, one per pixel | 
|---|
| 68 |  | 
|---|
| 69 | Int_t      fPulserFrequency;          // Light pulser frequency | 
|---|
| 70 |  | 
|---|
| 71 | virtual Bool_t SetupHists(const MParList *pList); | 
|---|
| 72 | virtual Bool_t ReInitHists(MParList *pList); | 
|---|
| 73 | virtual Bool_t FillHists(const MParContainer *par, const Stat_t w=1); | 
|---|
| 74 | virtual Bool_t FinalizeHists(); | 
|---|
| 75 | virtual void   FinalizeBadPixels(); | 
|---|
| 76 |  | 
|---|
| 77 | virtual void CalcAverageSigma(); | 
|---|
| 78 |  | 
|---|
| 79 | void DrawAverageSigma(Bool_t sat, Bool_t inner, | 
|---|
| 80 | Float_t sigma, Float_t sigmaerr, | 
|---|
| 81 | Float_t relsigma, Float_t relsigmaerr) const; | 
|---|
| 82 |  | 
|---|
| 83 | void FitHiGainArrays(MCalibrationCam &calcam, MBadPixelsCam &badcam, | 
|---|
| 84 | MBadPixelsPix::UncalibratedType_t fittyp, | 
|---|
| 85 | MBadPixelsPix::UncalibratedType_t osctyp); | 
|---|
| 86 |  | 
|---|
| 87 | void FitHiGainHists(MHGausEvents &hist, | 
|---|
| 88 | MCalibrationPix &pix, | 
|---|
| 89 | MBadPixelsPix &bad, | 
|---|
| 90 | MBadPixelsPix::UncalibratedType_t fittyp, | 
|---|
| 91 | MBadPixelsPix::UncalibratedType_t osctyp); | 
|---|
| 92 |  | 
|---|
| 93 | void FitLoGainArrays(MCalibrationCam &calcam, MBadPixelsCam &badcam, | 
|---|
| 94 | MBadPixelsPix::UncalibratedType_t fittyp, | 
|---|
| 95 | MBadPixelsPix::UncalibratedType_t osctyp); | 
|---|
| 96 |  | 
|---|
| 97 | void FitLoGainHists(MHGausEvents &hist, | 
|---|
| 98 | MCalibrationPix &pix, | 
|---|
| 99 | MBadPixelsPix &bad, | 
|---|
| 100 | MBadPixelsPix::UncalibratedType_t fittyp, | 
|---|
| 101 | MBadPixelsPix::UncalibratedType_t osctyp); | 
|---|
| 102 |  | 
|---|
| 103 | void InitHists(MHGausEvents &hist, MBadPixelsPix &bad, const Int_t i); | 
|---|
| 104 |  | 
|---|
| 105 | public: | 
|---|
| 106 |  | 
|---|
| 107 | MHCalibrationCam(const char *name=NULL, const char *title=NULL); | 
|---|
| 108 | ~MHCalibrationCam(); | 
|---|
| 109 |  | 
|---|
| 110 | virtual Bool_t SetupFill(const MParList *pList); | 
|---|
| 111 | virtual Bool_t ReInit   (      MParList *pList); | 
|---|
| 112 | virtual Bool_t Fill     (const MParContainer *par, const Stat_t w=1); | 
|---|
| 113 | virtual Bool_t Finalize ( ); | 
|---|
| 114 |  | 
|---|
| 115 | // Clone | 
|---|
| 116 | TObject *Clone(const char *) const; | 
|---|
| 117 |  | 
|---|
| 118 | // Draw | 
|---|
| 119 | virtual void   Draw(const Option_t *opt); | 
|---|
| 120 |  | 
|---|
| 121 | virtual Bool_t GetPixelContent ( Double_t &val, Int_t idx, const MGeomCam &cam, Int_t type=0) const; | 
|---|
| 122 | virtual void   DrawPixelContent( Int_t num )  const; | 
|---|
| 123 |  | 
|---|
| 124 | const Int_t          GetAverageAreas       ()          const; | 
|---|
| 125 | MHGausEvents  &GetAverageHiGainArea  (UInt_t i); | 
|---|
| 126 | const MHGausEvents  &GetAverageHiGainArea  (UInt_t i)  const; | 
|---|
| 127 | MHGausEvents  &GetAverageLoGainArea  (UInt_t i); | 
|---|
| 128 | const MHGausEvents  &GetAverageLoGainArea  (UInt_t i)  const; | 
|---|
| 129 | MHGausEvents  &GetAverageHiGainSector(UInt_t i); | 
|---|
| 130 | const MHGausEvents  &GetAverageHiGainSector(UInt_t i)  const; | 
|---|
| 131 | MHGausEvents  &GetAverageLoGainSector(UInt_t i); | 
|---|
| 132 | const MHGausEvents  &GetAverageLoGainSector(UInt_t i)  const; | 
|---|
| 133 | const Int_t          GetAverageSectors     ()          const; | 
|---|
| 134 | const TArrayI       &GetRunNumbers         ()          const; | 
|---|
| 135 | MHGausEvents  &operator[]            (UInt_t i); | 
|---|
| 136 | const MHGausEvents  &operator[]            (UInt_t i)  const; | 
|---|
| 137 | MHGausEvents  &operator()            (UInt_t i); | 
|---|
| 138 | const MHGausEvents  &operator()            (UInt_t i)  const; | 
|---|
| 139 |  | 
|---|
| 140 | void SetAverageNbins(   const Int_t bins=fgAverageNbins ) { fAverageNbins = bins; } | 
|---|
| 141 | void SetPulserFrequency(const Int_t f=fgPulserFrequency)  { fPulserFrequency = f; } | 
|---|
| 142 |  | 
|---|
| 143 | ClassDef(MHCalibrationCam, 1) // Base Histogram class for Calibration Camera | 
|---|
| 144 | }; | 
|---|
| 145 |  | 
|---|
| 146 | #endif | 
|---|
| 147 |  | 
|---|
| 148 |  | 
|---|
| 149 |  | 
|---|
| 150 |  | 
|---|
| 151 |  | 
|---|
| 152 |  | 
|---|
| 153 |  | 
|---|
| 154 |  | 
|---|
| 155 |  | 
|---|