source: trunk/MagicSoft/Mars/mcalib/MHCalibrationCam.h@ 4335

Last change on this file since 4335 was 4335, checked in by gaug, 20 years ago
*** empty log message ***
File size: 6.6 KB
Line 
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
27class TText;
28class TArrayI;
29class TArrayF;
30class MHGausEvents;
31class MGeomCam;
32class MRawRunHeader;
33class MCalibrationCam;
34class MCalibrationPix;
35class MBadPixelsCam;
36class MBadPixelsPix;
37class MHCalibrationCam : public MH, public MCamEvent
38{
39
40private:
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
45protected:
46
47 Float_t fNumHiGainSaturationLimit; // Rel. amount sat. higain FADC slices until pixel is called saturated
48 Float_t fNumLoGainSaturationLimit; // Rel. amount sat. logain FADC slices until pixel is called saturated
49
50 TArrayI fAverageAreaNum; // Number of pixels in average pixels per area
51 TArrayF fAverageAreaRelSigma; // Re-normalized relative sigmas in average pixels per area
52 TArrayF fAverageAreaRelSigmaVar; // Variance Re-normalized relative sigmas in average pixels per area
53 TArrayI fAverageAreaSat; // Number of saturated slices in average pixels per area
54 TArrayF fAverageAreaSigma; // Re-normalized sigmas in average pixels per area
55 TArrayF fAverageAreaSigmaVar; // Variance Re-normalized sigmas in average pixels per area
56 Int_t fAverageNbins; // Number of bins for the average histograms
57 TObjArray *fAverageHiGainAreas; //-> Array of calibration pixels, one per pixel area
58 TObjArray *fAverageHiGainSectors; //-> Array of calibration pixels, one per camera sector
59 TObjArray *fAverageLoGainAreas; //-> Array of calibration pixels, one per pixel area
60 TObjArray *fAverageLoGainSectors; //-> Array of calibration pixels, one per camera sector
61 TArrayI fAverageSectorNum; // Number of pixels in average pixels per sector
62 TArrayI fRunNumbers; // Numbers of runs used
63
64 MBadPixelsCam *fBadPixels; //! Bad Pixels storage container
65 MCalibrationCam *fCam; //! Calibration Cam with the results
66 MGeomCam *fGeom; //! Camera geometry
67 MRawRunHeader *fRunHeader; //! Run Header
68
69 TObjArray *fHiGainArray; //-> Array of calibration pixels, one per pixel
70 TObjArray *fLoGainArray; //-> Array of calibration pixels, one per pixel
71
72 Int_t fPulserFrequency; // Light pulser frequency
73 Bool_t fDebug;
74
75 virtual Bool_t SetupHists(const MParList *pList);
76 virtual Bool_t ReInitHists(MParList *pList);
77 virtual Bool_t FillHists(const MParContainer *par, const Stat_t w=1);
78 virtual Bool_t FinalizeHists();
79 virtual void FinalizeBadPixels();
80
81 virtual void CalcAverageSigma();
82
83 void DrawAverageSigma(Bool_t sat, Bool_t inner,
84 Float_t sigma, Float_t sigmaerr,
85 Float_t relsigma, Float_t relsigmaerr) const;
86
87 void FitHiGainArrays(MCalibrationCam &calcam, MBadPixelsCam &badcam,
88 MBadPixelsPix::UncalibratedType_t fittyp,
89 MBadPixelsPix::UncalibratedType_t osctyp);
90
91 void FitHiGainHists(MHGausEvents &hist,
92 MCalibrationPix &pix,
93 MBadPixelsPix &bad,
94 MBadPixelsPix::UncalibratedType_t fittyp,
95 MBadPixelsPix::UncalibratedType_t osctyp);
96
97 void FitLoGainArrays(MCalibrationCam &calcam, MBadPixelsCam &badcam,
98 MBadPixelsPix::UncalibratedType_t fittyp,
99 MBadPixelsPix::UncalibratedType_t osctyp);
100
101 void FitLoGainHists(MHGausEvents &hist,
102 MCalibrationPix &pix,
103 MBadPixelsPix &bad,
104 MBadPixelsPix::UncalibratedType_t fittyp,
105 MBadPixelsPix::UncalibratedType_t osctyp);
106
107 void InitHists(MHGausEvents &hist, MBadPixelsPix &bad, const Int_t i);
108
109public:
110
111 MHCalibrationCam(const char *name=NULL, const char *title=NULL);
112 virtual ~MHCalibrationCam();
113
114 virtual Bool_t SetupFill(const MParList *pList);
115 virtual Bool_t ReInit ( MParList *pList);
116 virtual Bool_t Fill (const MParContainer *par, const Stat_t w=1);
117 virtual Bool_t Finalize ( );
118
119 // Clone
120 virtual TObject *Clone(const char *) const;
121
122 // Draw
123 virtual void Draw(const Option_t *opt);
124
125 virtual Bool_t GetPixelContent ( Double_t &val, Int_t idx, const MGeomCam &cam, Int_t type=0) const;
126 virtual void DrawPixelContent( Int_t num ) const;
127
128 const Int_t GetAverageAreas () const;
129 MHGausEvents &GetAverageHiGainArea (UInt_t i);
130 const MHGausEvents &GetAverageHiGainArea (UInt_t i) const;
131 MHGausEvents &GetAverageLoGainArea (UInt_t i);
132 const MHGausEvents &GetAverageLoGainArea (UInt_t i) const;
133 MHGausEvents &GetAverageHiGainSector(UInt_t i);
134 const MHGausEvents &GetAverageHiGainSector(UInt_t i) const;
135 MHGausEvents &GetAverageLoGainSector(UInt_t i);
136 const MHGausEvents &GetAverageLoGainSector(UInt_t i) const;
137 const Int_t GetAverageSectors () const;
138 const Float_t GetNumHiGainSaturationLimit() const { return fNumHiGainSaturationLimit; }
139 const Float_t GetNumLoGainSaturationLimit() const { return fNumLoGainSaturationLimit; }
140 const TArrayI &GetRunNumbers () const;
141 const Int_t GetSize () const { return fHiGainArray->GetSize(); }
142
143 const Bool_t IsDebug () const { return fDebug; }
144
145 MHGausEvents &operator[] (UInt_t i);
146 const MHGausEvents &operator[] (UInt_t i) const;
147 MHGausEvents &operator() (UInt_t i);
148 const MHGausEvents &operator() (UInt_t i) const;
149
150 void SetDebug (const Bool_t b=kTRUE) { fDebug = b; }
151 void SetAverageNbins ( const Int_t bins=fgAverageNbins ) { fAverageNbins = bins; }
152 void SetNumLoGainSaturationLimit( const Float_t lim) { fNumLoGainSaturationLimit = lim; }
153 void SetNumHiGainSaturationLimit( const Float_t lim) { fNumHiGainSaturationLimit = lim; }
154 void SetPulserFrequency ( const Int_t f=fgPulserFrequency) { fPulserFrequency = f; }
155
156 ClassDef(MHCalibrationCam, 1) // Base Histogram class for Calibration Camera
157};
158
159#endif
160
161
162
163
164
165
166
167
168
Note: See TracBrowser for help on using the repository browser.