source: trunk/MagicSoft/Mars/mcalib/MCalibrationChargeCalc.h@ 5678

Last change on this file since 5678 was 5552, checked in by tbretz, 20 years ago
*** empty log message ***
File size: 10.6 KB
Line 
1#ifndef MARS_MCalibrationChargeCalc
2#define MARS_MCalibrationChargeCalc
3
4/////////////////////////////////////////////////////////////////////////////
5// //
6// MCalibrationChargeCalc //
7// //
8// Integrates the time slices of the all pixels of a calibration event //
9// and substract the pedestal value //
10// //
11/////////////////////////////////////////////////////////////////////////////
12
13#ifndef MARS_MTask
14#include "MTask.h"
15#endif
16
17#ifndef MARS_MBadPixelsPix
18#include "MBadPixelsPix.h"
19#endif
20
21#ifndef MARS_MCalibrationCam
22#include "MCalibrationCam.h"
23#endif
24
25#ifndef ROOT_TArrayC
26#include <TArrayC.h>
27#endif
28
29class MRawEvtHeader;
30class MPedestalCam;
31class MPedestalPix;
32class MCalibrationChargePINDiode;
33class MHCalibrationChargeBlindCam;
34class MCalibrationIntensityBlindCam;
35class MCalibrationBlindCam;
36class MCalibrationChargePix;
37class MCalibrationIntensityChargeCam;
38class MCalibrationChargeCam;
39class MHCalibrationChargeCam;
40class MCalibrationIntensityQECam;
41class MCalibrationQECam;
42class MGeomCam;
43class MExtractedSignalCam;
44class MBadPixelsIntensityCam;
45class MBadPixelsCam;
46class MTime;
47
48class MCalibrationChargeCalc : public MTask
49{
50private:
51
52 static const Float_t fgChargeLimit; //! Default for fChargeLimit (now set to: 2.5)
53 static const Float_t fgChargeErrLimit; //! Default for fChargeErrLimit (now set to: 0.)
54 static const Float_t fgChargeRelErrLimit; //! Default for fChargeRelErrLimit (now set to: 1.)
55 static const Float_t fgLambdaCheckLimit; //! Default for fLambdaCheckLimit (now set to: 0.2)
56 static const Float_t fgLambdaErrLimit; //! Default for fLabmdaErrLimit (now set to: 0.5)
57 static const Float_t fgPheErrLimit; //! Default for fPheErrLimit (now set to: 4.5)
58 static const Float_t fgFFactorErrLimit; //! Default for fFFactorErrLimit (now set to: 4.5)
59
60 static const TString fgNamePedestalCam; //! "MPedestalCam"
61
62 // Variables
63 Float_t fChargeLimit; // Limit acceptance mean charge (in units of PedRMS)
64 Float_t fChargeErrLimit; // Limit acceptance charge error (in abs. numbers)
65 Float_t fChargeRelErrLimit; // Limit acceptance rel. error mean (in abs. numbers)
66 Float_t fLambdaCheckLimit; // Limit rel. diff. lambda and lambdacheck in Blind Pixel
67 Float_t fLambdaErrLimit; // Limit acceptance lambda error in Blind Pixel
68 Float_t fNumHiGainSamples; // Number High-Gain FADC slices used by extractor
69 Float_t fNumLoGainSamples; // Number Low -Gain FADC slices used by extractor
70 Float_t fPheErrLimit; // Limit acceptance nr. phe's w.r.t. area idx mean (in sigmas)
71 Float_t fFFactorErrLimit; // Limit acceptance F-Factor w.r.t. area idx mean
72 Float_t fSqrtHiGainSamples; // Square root nr. High-Gain FADC slices used by extractor
73 Float_t fSqrtLoGainSamples; // Square root nr. Low -Gain FADC slices used by extractor
74
75 MCalibrationCam::PulserColor_t fPulserColor; // Calibration LEDs colour
76 UInt_t fPulserPattern; // Calibration LEDs Pulser Pattern
77
78 Int_t fNumInnerFFactorMethodUsed; // Number of inner pixels used for F-Factor Method calibration
79
80 Byte_t fFlags; // Bit-field for the general flags
81 TArrayC fResultFlags; // Bit-fields for the fitting results (one field per area index)
82 TArrayC fBlindPixelFlags; // Bit-fields for the blind pixel flags (one field per blind pixel)
83 TArrayC fPINDiodeFlags; // Bit-fields for the PIN Diode flags (one field per PIN Diode )
84
85 TString fOutputPath; // Path to the output file
86 TString fOutputFile; // Name of the output file
87 TString fNamePedestalCam; // Name of the 'MPedestalCam' container
88
89 // Pointers
90 MBadPixelsIntensityCam *fIntensBad; //! Bad Pixels
91 MBadPixelsCam *fBadPixels; //! Bad Pixels
92 MCalibrationIntensityChargeCam *fIntensCam; //! Intensity Calibration results of all pixels
93 MCalibrationChargeCam *fCam; //! Calibrated Charges results of all pixels
94 MHCalibrationChargeCam *fHCam; //! Charges histograms of all pixels
95 MCalibrationIntensityBlindCam *fIntensBlind; //! Intensity Calibration results of the Blind Pixels
96 MCalibrationBlindCam *fBlindCam; //! Calibrated Charges of the Blind Pixels
97 MHCalibrationChargeBlindCam *fHBlindCam; //! Charges histograms of the Blind Pixels
98 MCalibrationChargePINDiode *fPINDiode; //! Calibrated Charges of the PIN Diode
99 MCalibrationIntensityQECam *fIntensQE; //! Intensity Calibration Quantum Efficiencies of all pixels
100 MCalibrationQECam *fQECam; //! Calibrated Quantum Efficiencies of all pixels
101 MGeomCam *fGeom; //! Camera geometry
102 MExtractedSignalCam *fSignal; //! Extracted Signal
103 MRawEvtHeader *fHeader; //! Event header
104 MPedestalCam *fPedestals; //! Pedestals all pixels (calculated previously from ped.file)
105
106 // enums
107 enum Check_t
108 {
109 kCheckDeadPixels,
110 kCheckExtractionWindow,
111 kCheckHistOverflow,
112 kCheckDeviatingBehavior,
113 kCheckOscillations
114 }; // Possible Checks
115
116 Byte_t fCheckFlags; // Bit-field to hold the possible check flags
117
118 enum { kDebug, kPheFitOK, kFFactorFitOK, kBlindPixelFitOK, kBlindPixelPedFitOK, kPINDiodeFitOK };
119
120 // functions
121 void FinalizePedestals ( const MPedestalPix &ped, MCalibrationChargePix &cal, const Int_t aidx );
122 Bool_t FinalizeCharges ( MCalibrationChargePix &cal, MBadPixelsPix &bad, const char* what);
123 Bool_t FinalizePINDiode ();
124 Bool_t FinalizeBlindCam ();
125 Bool_t FinalizeFFactorMethod ();
126 void FinalizeBadPixels ();
127 void FinalizeFFactorQECam ();
128 void FinalizeBlindPixelQECam ();
129 void FinalizePINDiodeQECam ();
130 void FinalizeCombinedQECam ();
131 void FinalizeUnsuitablePixels();
132
133 const char* GetOutputFile();
134
135 // Query checks
136 Bool_t IsCheckDeadPixels () const { return TESTBIT(fCheckFlags,kCheckDeadPixels); }
137 Bool_t IsCheckDeviatingBehavior() const { return TESTBIT(fCheckFlags,kCheckDeviatingBehavior); }
138 Bool_t IsCheckExtractionWindow () const { return TESTBIT(fCheckFlags,kCheckExtractionWindow); }
139 Bool_t IsCheckHistOverflow () const { return TESTBIT(fCheckFlags,kCheckHistOverflow); }
140 Bool_t IsCheckOscillations () const { return TESTBIT(fCheckFlags,kCheckOscillations); }
141
142 void PrintUncalibrated( MBadPixelsPix::UncalibratedType_t typ, const char *text) const;
143
144 // Global fit results
145 void SetPheFitOK ( const Int_t aidx, const Bool_t b=kTRUE ) {
146 b ? SETBIT(fResultFlags[aidx], kPheFitOK)
147 : CLRBIT(fResultFlags[aidx], kPheFitOK); }
148 void SetFFactorFitOK ( const Int_t aidx, const Bool_t b=kTRUE ) {
149 b ? SETBIT(fResultFlags[aidx], kFFactorFitOK)
150 : CLRBIT(fResultFlags[aidx], kFFactorFitOK); }
151 void SetBlindPixelFitOK ( const Int_t idx, const Bool_t b=kTRUE ) {
152 b ? SETBIT(fBlindPixelFlags[idx], kBlindPixelFitOK)
153 : CLRBIT(fBlindPixelFlags[idx], kBlindPixelFitOK); }
154 void SetBlindPixelPedFitOK( const Int_t idx, const Bool_t b=kTRUE ) {
155 b ? SETBIT(fBlindPixelFlags[idx], kBlindPixelPedFitOK)
156 : CLRBIT(fBlindPixelFlags[idx], kBlindPixelPedFitOK); }
157 void SetPINDiodeFitOK ( const Int_t idx, const Bool_t b=kTRUE ) {
158 b ? SETBIT(fPINDiodeFlags[idx], kPINDiodeFitOK)
159 : CLRBIT(fPINDiodeFlags[idx], kPINDiodeFitOK); }
160
161 Int_t PreProcess (MParList *pList);
162 Bool_t ReInit (MParList *pList);
163 Int_t Process ();
164 Int_t PostProcess();
165 Int_t ReadEnv(const TEnv &env, TString prefix, Bool_t print);
166
167public:
168
169 MCalibrationChargeCalc(const char *name=NULL, const char *title=NULL);
170
171 Int_t CallPostProcess();
172
173 void Clear(const Option_t *o="");
174
175 Bool_t IsDebug() const { return TESTBIT(fFlags,kDebug); }
176
177 void SetChargeLimit ( const Float_t f=fgChargeLimit ) { fChargeLimit = f; }
178 void SetChargeErrLimit ( const Float_t f=fgChargeErrLimit ) { fChargeErrLimit = f; }
179 void SetChargeRelErrLimit ( const Float_t f=fgChargeRelErrLimit ) { fChargeRelErrLimit = f; }
180
181 // Checks
182 void SetCheckDeadPixels( const Bool_t b=kTRUE ) {
183 b ? SETBIT(fCheckFlags,kCheckDeadPixels)
184 : CLRBIT(fCheckFlags,kCheckDeadPixels); }
185 void SetCheckDeviatingBehavior( const Bool_t b=kTRUE ) {
186 b ? SETBIT(fCheckFlags,kCheckDeviatingBehavior)
187 : CLRBIT(fCheckFlags,kCheckDeviatingBehavior); }
188 void SetCheckExtractionWindow( const Bool_t b=kTRUE ) {
189 b ? SETBIT(fCheckFlags,kCheckExtractionWindow)
190 : CLRBIT(fCheckFlags,kCheckExtractionWindow); }
191 void SetCheckHistOverflow( const Bool_t b=kTRUE ) {
192 b ? SETBIT(fCheckFlags,kCheckHistOverflow)
193 : CLRBIT(fCheckFlags,kCheckHistOverflow); }
194 void SetCheckOscillations( const Bool_t b=kTRUE ) {
195 b ? SETBIT(fCheckFlags,kCheckOscillations)
196 : CLRBIT(fCheckFlags,kCheckOscillations); }
197
198 void SetDebug ( const Bool_t b=kTRUE ) { b ? SETBIT(fFlags, kDebug) : CLRBIT(fFlags, kDebug); }
199
200 void SetPedestals(MPedestalCam *cam) { fPedestals=cam; }
201
202 void SetFFactorErrLimit ( const Float_t f=fgFFactorErrLimit ) { fFFactorErrLimit = f; }
203 void SetLambdaErrLimit ( const Float_t f=fgLambdaErrLimit ) { fLambdaErrLimit = f; }
204 void SetLambdaCheckLimit ( const Float_t f=fgLambdaCheckLimit ) { fLambdaCheckLimit = f; }
205 void SetNamePedestalCam ( const char *name=fgNamePedestalCam.Data()) { fNamePedestalCam = name; }
206 void SetOutputPath ( TString path="." );
207 void SetOutputFile ( TString file="ChargeCalibStat.txt" );
208 void SetPheErrLimit ( const Float_t f=fgPheErrLimit ) { fPheErrLimit = f; }
209 void SetPulserColor ( const MCalibrationCam::PulserColor_t col ) { fPulserColor = col; }
210
211 ClassDef(MCalibrationChargeCalc, 1) // Task calculating Calibration Containers and Quantum Efficiencies
212};
213
214#endif
Note: See TracBrowser for help on using the repository browser.