source: trunk/MagicSoft/Mars/mcalib/MCalibrationPix.h@ 3132

Last change on this file since 3132 was 3128, checked in by gaug, 21 years ago
*** empty log message ***
File size: 10.4 KB
Line 
1#ifndef MARS_MCalibrationPix
2#define MARS_MCalibrationPix
3
4#ifndef MARS_MParContainer
5#include "MParContainer.h"
6#endif
7
8#include "MHCalibrationPixel.h"
9
10class MCalibrationPix : public MParContainer
11{
12private:
13
14 static const Float_t gkAverageQE; // The average quantum efficieny agreed on for the first analysis
15 static const Float_t gkAverageQEErr; // The error of average quantum efficieny
16
17 static const Float_t gkElectronicPedRms; // The pure electronic component of the RMS
18 static const Float_t gkErrElectronicPedRms; // The error of the pure electronic component of the RMS
19 static const Float_t gkFFactor; // The laboratory F-factor of the PMTs
20 static const Float_t gkFFactorError; // The laboratory F-factor Error of the PMTs
21 static const Float_t gkChargeLimit; // The limit (in units of PedRMS) for acceptance of the fitted mean charge
22 static const Float_t gkChargeErrLimit; // The limit (in units of PedRMS) for acceptance of the fitted charge sigma
23 static const Float_t gkChargeRelErrLimit; // The limit (in units of Error of fitted charge) for acceptance of the fitted mean
24 static const Float_t gkTimeLimit; // The limit (in units of FADC slices) for acceptance of the fitted time
25 static const Float_t gkTimeErrLimit; // The limit (in units of FADC slices) for acceptance of the fitted time sigma
26 static const Float_t gkConvFFactorRelErrorLimit; // The limit (in units of [1]) for acceptance of the rel. error of the conversion factor with the FFactor method
27
28 Int_t fPixId; // the pixel Id
29
30 UInt_t fFlags; // Flag for the set Bits
31
32 Float_t fAverageQE;
33 Float_t fAverageQEErr;
34
35 Float_t fCharge; // The mean reduced charge after the fit
36 Float_t fErrCharge; // The error of reduced mean charge after the fit
37 Float_t fSigmaCharge; // The sigma of the mean charge after the fit
38 Float_t fErrSigmaCharge; // The error of the sigma of the mean charge after the fit
39 Float_t fRSigmaCharge; // The reduced squares of sigmas after the fit
40 Float_t fErrRSigmaCharge; // The reduced squares of sigmas after the fit
41 Float_t fChargeProb; // The probability of the fit function
42
43 Float_t fPed; // The mean pedestal (from MPedestalPix)
44 Float_t fPedRms; // The pedestal RMS (from MPedestalPix)
45 Float_t fErrPedRms; // The error of the pedestal RMS (from MPedestalPix)
46
47 Float_t fAbsTimeMean;
48 Float_t fAbsTimeMeanErr;
49 Float_t fAbsTimeRms;
50
51 Byte_t fTimeFirstHiGain; // The first used FADC slice
52 Byte_t fTimeLastHiGain; // The last used FADC slice
53
54 Byte_t fTimeFirstLoGain; // The first used FADC slice
55 Byte_t fTimeLastLoGain; // The last used FADC slice
56
57 Float_t fPheFFactorMethod; // The number of Phe's calculated (F-factor method)
58 Float_t fPheFFactorMethodError; // The error on the number of Phe's calculated (F-factor method)
59
60 Float_t fMeanConversionFFactorMethod; // The conversion factor to Phe's (F-factor method)
61 Float_t fMeanConversionBlindPixelMethod; // The conversion factor to Ph's (Blind Pixel method)
62 Float_t fMeanConversionPINDiodeMethod; // The conversion factor to Ph's (PIN Diode method)
63 Float_t fMeanConversionCombinedMethod; // The conversion factor to Ph's (all methods combined)
64
65 Float_t fErrorConversionFFactorMethod; // The error of the conversion factor to Phe's (F-factor method)
66 Float_t fErrorConversionBlindPixelMethod; // The error of the conversion factor to Ph's (Blind Pixel method)
67 Float_t fErrorConversionPINDiodeMethod; // The error of the conversion factor to Ph's (PIN Diode method)
68 Float_t fErrorConversionCombinedMethod; // The error of the conversion factor to Ph's (all methods combined)
69
70 Float_t fSigmaConversionFFactorMethod; // The sigma of conversion factor to Phe's (F-factor method)
71 Float_t fSigmaConversionBlindPixelMethod; // The conversion factor to Ph's (Blind Pixel method)
72 Float_t fSigmaConversionPINDiodeMethod; // The conversion factor to Ph's (PIN Diode method)
73 Float_t fSigmaConversionCombinedMethod; // The conversion factor to Ph's (all methods combined)
74
75 Float_t fTotalFFactor; // The F-Factor of the total readout system (Sigma(out)/mean(out)*Mean(in)/sigma(in)
76 Float_t fTotalFFactorError; // The error on the F-Factor of the total readout system
77
78 Float_t fConversionHiLo; // The conversion factor between Hi Gain and Lo Gain
79 Float_t fConversionHiLoError; // The error of the conversion factor between Hi Gain and Lo Gain
80
81 Float_t fNumHiGainSamples;
82 Float_t fNumLoGainSamples;
83
84 Bool_t fFactorCalculated;
85
86 enum { kHiGainSaturation,
87 kExcluded, kExcludeQualityCheck,
88 kChargeValid, kTimeFitValid,
89 kFitted, kOscillating,
90 kBlindPixelMethodValid, kFFactorMethodValid, kPINDiodeMethodValid, kCombinedMethodValid };
91
92 MHCalibrationPixel *fHist; // Pointer to the histograms performing the fits, etc.
93
94 Bool_t CheckChargeValidity();
95 Bool_t CheckTimeFitValidity();
96 Bool_t CalcFFactorMethod();
97
98public:
99
100 MCalibrationPix(const char *name=NULL, const char *title=NULL);
101 ~MCalibrationPix();
102
103 void Clear(Option_t *o="");
104
105 // Getter
106 MHCalibrationPixel *GetHist() const { return fHist; }
107
108 // Setter
109 void SetPedestal(const Float_t ped, const Float_t pedrms,
110 const Float_t higainsamp, const Float_t logainsamp);
111 void SetConversionHiLo(const Float_t c) { fConversionHiLo = c; }
112 void SetConversionHiLoError(const Float_t e) { fConversionHiLoError = e; }
113 void SetAverageQE(const Float_t qe=gkAverageQE, const Float_t err=gkAverageQEErr)
114 { fAverageQE = qe;
115 fAverageQEErr = err; }
116
117 // Setters for MC
118 void SetConversionFFactorMethod(Float_t c, Float_t err, Float_t sig);
119 void SetConversionBlindPixelMethod(Float_t c, Float_t err, Float_t sig);
120 void SetConversionPINDiodeMethod(Float_t c, Float_t err, Float_t sig);
121 void SetConversionCombinedMethod(Float_t c, Float_t err, Float_t sig);
122
123 // Bit Setters
124 void SetHiGainSaturation(Bool_t b = kTRUE);
125 void SetExcluded(Bool_t b = kTRUE);
126 void SetExcludeQualityCheck(Bool_t b = kTRUE);
127 void SetChargeValid(Bool_t b = kTRUE);
128 void SetFitted(Bool_t b = kTRUE);
129 void SetOscillating(Bool_t b = kTRUE);
130 void SetBlindPixelMethodValid(Bool_t b = kTRUE);
131 void SetFFactorMethodValid(Bool_t b = kTRUE);
132 void SetPINDiodeMethodValid(Bool_t b = kTRUE);
133 void SetAbsTimeBordersHiGain(Byte_t f, Byte_t l);
134 void SetAbsTimeBordersLoGain(Byte_t f, Byte_t l);
135
136 // Charges
137 Float_t GetCharge() const { return fCharge; }
138 Float_t GetErrCharge() const { return fErrCharge; }
139 Float_t GetChargeProb() const { return fChargeProb; }
140 Float_t GetSigmaCharge() const { return fSigmaCharge; }
141 Float_t GetErrSigmaCharge() const { return fErrSigmaCharge; }
142 Float_t GetRSigmaCharge() const { return fRSigmaCharge; }
143 Float_t GetErrRSigmaCharge() const { return fErrRSigmaCharge; }
144
145
146 Float_t GetAbsTimeMean() const { return fAbsTimeMean; }
147 Float_t GetAbsTimeMeanErr() const { return fAbsTimeMeanErr; }
148 Float_t GetAbsTimeRms() const { return fAbsTimeRms; }
149
150 // Conversion Factors
151 Float_t GetConversionHiLo() const { return fConversionHiLo; }
152 Float_t GetConversionHiLoError() const { return fConversionHiLoError; }
153
154 Float_t GetMeanConversionBlindPixelMethod() const { return fMeanConversionBlindPixelMethod ; }
155 Float_t GetErrorConversionBlindPixelMethod() const { return fErrorConversionBlindPixelMethod ; }
156 Float_t GetSigmaConversionBlindPixelMethod() const { return fSigmaConversionBlindPixelMethod ; }
157
158 Float_t GetMeanConversionFFactorMethod();
159 Float_t GetErrorConversionFFactorMethod();
160 Float_t GetSigmaConversionFFactorMethod();
161
162 Float_t GetMeanConversionPINDiodeMethod() const { return fMeanConversionPINDiodeMethod ; }
163 Float_t GetErrorConversionPINDiodeMethod() const { return fErrorConversionPINDiodeMethod ; }
164 Float_t GetSigmaConversionPINDiodeMethod() const { return fSigmaConversionPINDiodeMethod ; }
165
166 Float_t GetMeanConversionCombinedMethod() const { return fMeanConversionCombinedMethod ; }
167 Float_t GetErrorConversionCombinedMethod() const { return fErrorConversionCombinedMethod ; }
168 Float_t GetSigmaConversionCombinedMethod() const { return fSigmaConversionCombinedMethod ; }
169
170 Float_t GetPheFFactorMethod();
171 Float_t GetPheFFactorMethodError();
172
173 Int_t GetPixId() const { return fPixId; }
174
175 Float_t GetPed() const { return fPed; }
176 Float_t GetPedRms() const { return fPedRms; }
177
178 Float_t GetTotalFFactorFFactorMethod();
179 Float_t GetTotalFFactorErrorFFactorMethod();
180
181 Float_t GetTotalFFactorBlindPixelMethod();
182 Float_t GetTotalFFactorErrorBlindPixelMethod();
183
184 Float_t GetTotalFFactorPINDiodeMethod();
185 Float_t GetTotalFFactorErrorPINDiodeMethod();
186
187 Float_t GetTotalFFactorCombinedMethod();
188 Float_t GetTotalFFactorErrorCombinedMethod();
189
190 Bool_t IsExcluded() const;
191 Bool_t IsExcludeQualityCheck() const;
192 Bool_t IsHiGainSaturation() const;
193 Bool_t IsChargeValid() const;
194 Bool_t IsFitted() const;
195 Bool_t IsOscillating();
196 Bool_t IsBlindPixelMethodValid() const;
197 Bool_t IsPINDiodeMethodValid() const;
198 Bool_t IsFFactorMethodValid();
199 Bool_t IsCombinedMethodValid();
200
201 // Fill histos
202 Bool_t FillChargeHiGain(Float_t q) const { return fHist->FillChargeHiGain(q); }
203 Bool_t FillAbsTimeHiGain(Float_t t) const { return fHist->FillAbsTimeHiGain(t); }
204
205 Bool_t FillChargeLoGain(Float_t q) const { return fHist->FillChargeLoGain(q); }
206 Bool_t FillAbsTimeLoGain(Float_t t) const { return fHist->FillAbsTimeLoGain(t); }
207
208 Bool_t FillGraphs(Float_t qhi,Float_t qlo) const { return fHist->FillGraphs(qhi,qlo); }
209
210 void DefinePixId(Int_t i);
211
212 // Fits
213 Bool_t FitCharge();
214
215 // Draws
216 void Draw(Option_t *opt="") { fHist->Draw(opt); }
217 TObject *DrawClone(Option_t *opt="") const { return fHist->DrawClone(opt); }
218
219 // Miscellaneous
220 void ApplyLoGainConversion();
221 void CheckOscillations();
222
223 ClassDef(MCalibrationPix, 1) // Container for Calibration of one pixel
224};
225
226#endif
227
Note: See TracBrowser for help on using the repository browser.