1 | /* ======================================================================== *\
|
---|
2 | !
|
---|
3 | ! *
|
---|
4 | ! * This file is part of MARS, the MAGIC Analysis and Reconstruction
|
---|
5 | ! * Software. It is distributed to you in the hope that it can be a useful
|
---|
6 | ! * and timesaving tool in analysing Data of imaging Cerenkov telescopes.
|
---|
7 | ! * It is distributed WITHOUT ANY WARRANTY.
|
---|
8 | ! *
|
---|
9 | ! * Permission to use, copy, modify and distribute this software and its
|
---|
10 | ! * documentation for any purpose is hereby granted without fee,
|
---|
11 | ! * provided that the above copyright notice appear in all copies and
|
---|
12 | ! * that both that copyright notice and this permission notice appear
|
---|
13 | ! * in supporting documentation. It is provided "as is" without express
|
---|
14 | ! * or implied warranty.
|
---|
15 | ! *
|
---|
16 | !
|
---|
17 | !
|
---|
18 | ! Author(s): Markus Gaug, 05/2004 <mailto:markus@ifae.es>
|
---|
19 | !
|
---|
20 | ! Copyright: MAGIC Software Development, 2000-2004
|
---|
21 | !
|
---|
22 | !
|
---|
23 | \* ======================================================================== */
|
---|
24 |
|
---|
25 | //////////////////////////////////////////////////////////////////////////////
|
---|
26 | //
|
---|
27 | // MExtractTimeAndCharge
|
---|
28 | //
|
---|
29 | // Base class for the signal extractors which extract the arrival time
|
---|
30 | // and the signal at the same time. Uses the functions
|
---|
31 | // FindTimeAndChargeHiGain() and FindTimeAndChargeLoGain() to extract the signal and
|
---|
32 | // substract the pedestal value.
|
---|
33 | //
|
---|
34 | // The following figure gives and example of possible inheritance trees.
|
---|
35 | // An extractor class can inherit from each of the following base classes:
|
---|
36 | // - MExtractor
|
---|
37 | // - MExtractTime
|
---|
38 | // - MExtractTimeAndCharge
|
---|
39 | //
|
---|
40 | //Begin_Html
|
---|
41 | /*
|
---|
42 | <img src="images/ExtractorClasses.gif">
|
---|
43 | */
|
---|
44 | //End_Html
|
---|
45 | //
|
---|
46 | // The following variables have to be set by the derived class and
|
---|
47 | // do not have defaults:
|
---|
48 | // - fNumHiGainSamples
|
---|
49 | // - fNumLoGainSamples
|
---|
50 | // - fSqrtHiGainSamples
|
---|
51 | // - fSqrtLoGainSamples
|
---|
52 | //
|
---|
53 | // Input Containers:
|
---|
54 | // MRawEvtData
|
---|
55 | // MRawRunHeader
|
---|
56 | // MPedestalCam
|
---|
57 | //
|
---|
58 | // Output Containers:
|
---|
59 | // MArrivalTimeCam
|
---|
60 | // MExtractedSignalCam
|
---|
61 | //
|
---|
62 | //////////////////////////////////////////////////////////////////////////////
|
---|
63 | #include "MExtractTimeAndCharge.h"
|
---|
64 |
|
---|
65 | #include <TRandom.h>
|
---|
66 |
|
---|
67 | #include "MLog.h"
|
---|
68 | #include "MLogManip.h"
|
---|
69 |
|
---|
70 | #include "MParList.h"
|
---|
71 |
|
---|
72 | #include "MRawEvtData.h"
|
---|
73 | #include "MRawEvtPixelIter.h"
|
---|
74 | #include "MRawRunHeader.h"
|
---|
75 |
|
---|
76 | #include "MPedestalCam.h"
|
---|
77 | #include "MPedestalPix.h"
|
---|
78 |
|
---|
79 | #include "MArrivalTimeCam.h"
|
---|
80 | #include "MArrivalTimePix.h"
|
---|
81 |
|
---|
82 | #include "MExtractedSignalCam.h"
|
---|
83 | #include "MExtractedSignalPix.h"
|
---|
84 |
|
---|
85 | ClassImp(MExtractTimeAndCharge);
|
---|
86 |
|
---|
87 | using namespace std;
|
---|
88 |
|
---|
89 | const Float_t MExtractTimeAndCharge::fgLoGainStartShift = -3.5;
|
---|
90 | const Byte_t MExtractTimeAndCharge::fgLoGainSwitch = 120;
|
---|
91 |
|
---|
92 | // --------------------------------------------------------------------------
|
---|
93 | //
|
---|
94 | // Default constructor.
|
---|
95 | //
|
---|
96 | // Sets:
|
---|
97 | // - fLoGainFirstSave to 0
|
---|
98 | // - fWindowSizeHiGain and fWindowSizeLoGain to 0
|
---|
99 | // - fLoGainStartShift to fgLoGainStartShift+fgOffsetLoGain
|
---|
100 | // - fLoGainSwitch to fgLoGainSwitch
|
---|
101 | //
|
---|
102 | MExtractTimeAndCharge::MExtractTimeAndCharge(const char *name, const char *title)
|
---|
103 | : fLoGainFirstSave(0), fWindowSizeHiGain(0), fWindowSizeLoGain(0)
|
---|
104 | {
|
---|
105 | fName = name ? name : "MExtractTimeAndCharge";
|
---|
106 | fTitle = title ? title : "Base class for signal and time extractors";
|
---|
107 |
|
---|
108 | SetLoGainStartShift();
|
---|
109 | SetLoGainSwitch();
|
---|
110 | }
|
---|
111 |
|
---|
112 | // --------------------------------------------------------------------------
|
---|
113 | //
|
---|
114 | // The PreProcess searches for the following input containers:
|
---|
115 | // - MRawEvtData
|
---|
116 | // - MRawRunHeader
|
---|
117 | // - MPedestalCam
|
---|
118 | //
|
---|
119 | // The following output containers are also searched and created if
|
---|
120 | // they were not found:
|
---|
121 | //
|
---|
122 | // - MExtractedSignalCam
|
---|
123 | // - MArrivalTimeCam
|
---|
124 | //
|
---|
125 | Int_t MExtractTimeAndCharge::PreProcess(MParList *pList)
|
---|
126 | {
|
---|
127 |
|
---|
128 | if (!MExtractTime::PreProcess(pList))
|
---|
129 | return kFALSE;
|
---|
130 |
|
---|
131 | fSignals = (MExtractedSignalCam*)pList->FindCreateObj("MExtractedSignalCam",AddSerialNumber(fNameSignalCam));
|
---|
132 | if (!fSignals)
|
---|
133 | return kFALSE;
|
---|
134 |
|
---|
135 | *fLog << flush << inf;
|
---|
136 | return kTRUE;
|
---|
137 | }
|
---|
138 |
|
---|
139 | // --------------------------------------------------------------------------
|
---|
140 | //
|
---|
141 | // The ReInit calls:
|
---|
142 | // - MExtractor::ReInit()
|
---|
143 | //
|
---|
144 | // Call:
|
---|
145 | // - MArrivalTimeCam::SetUsedFADCSlices(fHiGainFirst, fHiGainLast, fNumHiGainSamples,
|
---|
146 | // fLoGainFirst, fLoGainLast, fNumLoGainSamples);
|
---|
147 | // - InitArrays();
|
---|
148 | //
|
---|
149 | Bool_t MExtractTimeAndCharge::ReInit(MParList *pList)
|
---|
150 | {
|
---|
151 |
|
---|
152 | if (!MExtractTime::ReInit(pList))
|
---|
153 | return kFALSE;
|
---|
154 |
|
---|
155 | if (!InitArrays())
|
---|
156 | return kFALSE;
|
---|
157 |
|
---|
158 | if (fSignals)
|
---|
159 | fSignals->SetUsedFADCSlices(fHiGainFirst, fHiGainLast+fHiLoLast, fNumHiGainSamples,
|
---|
160 | fLoGainFirst, fLoGainLast, fNumLoGainSamples);
|
---|
161 |
|
---|
162 |
|
---|
163 | return kTRUE;
|
---|
164 | }
|
---|
165 |
|
---|
166 | // --------------------------------------------------------------------------
|
---|
167 | //
|
---|
168 | // Calculate the integral of the FADC time slices and store them as a new
|
---|
169 | // pixel in the MArrivalTimeCam container.
|
---|
170 | // Calculate the integral of the FADC time slices and store them as a new
|
---|
171 | // pixel in the MExtractedSignalCam container.
|
---|
172 | // The functions FindTimeAndChargeHiGain() and FindTimeAndChargeLoGain() are
|
---|
173 | // supposed to extract the signal themselves.
|
---|
174 | //
|
---|
175 | Int_t MExtractTimeAndCharge::Process()
|
---|
176 | {
|
---|
177 |
|
---|
178 | MRawEvtPixelIter pixel(fRawEvt);
|
---|
179 |
|
---|
180 | while (pixel.Next())
|
---|
181 | {
|
---|
182 | //
|
---|
183 | // Find signal in hi- and lo-gain
|
---|
184 | //
|
---|
185 | Float_t sumhi =0., deltasumhi =0; // Set hi-gain of MExtractedSignalPix valid
|
---|
186 | Float_t timehi=0., deltatimehi=0; // Set hi-gain of MArrivalTimePix valid
|
---|
187 | Byte_t sathi=0;
|
---|
188 |
|
---|
189 | // Initialize fMaxBinContent for the case, it gets not set by the derived class
|
---|
190 | fMaxBinContent = fLoGainSwitch + 1;
|
---|
191 |
|
---|
192 | const Int_t pixidx = pixel.GetPixelId();
|
---|
193 | const MPedestalPix &ped = (*fPedestals)[pixidx];
|
---|
194 | const Bool_t higainabflag = pixel.HasABFlag();
|
---|
195 |
|
---|
196 | FindTimeAndChargeHiGain(pixel.GetHiGainSamples()+fHiGainFirst, pixel.GetLoGainSamples(),
|
---|
197 | sumhi, deltasumhi, timehi, deltatimehi,
|
---|
198 | sathi, ped, higainabflag);
|
---|
199 |
|
---|
200 | // Make sure that in cases the time couldn't be correctly determined
|
---|
201 | // more meaningfull default values are assigned
|
---|
202 | if (timehi<=0 || timehi>pixel.GetNumHiGainSamples())
|
---|
203 | timehi = gRandom->Uniform(pixel.GetNumHiGainSamples());
|
---|
204 |
|
---|
205 | Float_t sumlo =0., deltasumlo =-1.; // invalidate logain of MExtractedSignalPix
|
---|
206 | Float_t timelo=0., deltatimelo=-1; // invalidate logain of MArrivalTimePix
|
---|
207 | Byte_t satlo=0;
|
---|
208 |
|
---|
209 | //
|
---|
210 | // Adapt the low-gain extraction range from the obtained high-gain time
|
---|
211 | //
|
---|
212 | if (pixel.HasLoGain() && (fMaxBinContent > fLoGainSwitch) )
|
---|
213 | {
|
---|
214 | deltasumlo = 0; // make logain of MExtractedSignalPix valid
|
---|
215 | deltatimelo = 0; // make logain of MArrivalTimePix valid
|
---|
216 |
|
---|
217 | fLoGainFirstSave = fLoGainFirst;
|
---|
218 |
|
---|
219 | const Float_t pos = sathi==0 ? timehi : sathi;
|
---|
220 |
|
---|
221 | if (pos>-fLoGainStartShift)
|
---|
222 | fLoGainFirst = (Byte_t)(pos + fLoGainStartShift);
|
---|
223 |
|
---|
224 | if (fLoGainFirst<fLoGainFirstSave)
|
---|
225 | fLoGainFirst = fLoGainFirstSave;
|
---|
226 |
|
---|
227 | if ( fLoGainFirst <= fLoGainLast-fWindowSizeLoGain)
|
---|
228 | {
|
---|
229 | const Bool_t logainabflag = (higainabflag + pixel.GetNumHiGainSamples()) & 0x1;
|
---|
230 | FindTimeAndChargeLoGain(pixel.GetLoGainSamples()+fLoGainFirst,
|
---|
231 | sumlo, deltasumlo, timelo, deltatimelo,
|
---|
232 | satlo, ped, logainabflag);
|
---|
233 | }
|
---|
234 | fLoGainFirst = fLoGainFirstSave;
|
---|
235 |
|
---|
236 | // Make sure that in cases the time couldn't be correctly determined
|
---|
237 | // more meaningfull default values are assigned
|
---|
238 | if (timelo<=0 || timelo>pixel.GetNumLoGainSamples())
|
---|
239 | timelo = gRandom->Uniform(pixel.GetNumLoGainSamples());
|
---|
240 | }
|
---|
241 |
|
---|
242 | MExtractedSignalPix &pix = (*fSignals)[pixidx];
|
---|
243 | MArrivalTimePix &tix = (*fArrTime)[pixidx];
|
---|
244 | pix.SetExtractedSignal(sumhi, deltasumhi,sumlo, deltasumlo);
|
---|
245 | pix.SetGainSaturation(sathi, sathi, satlo);
|
---|
246 |
|
---|
247 | tix.SetArrivalTime(timehi, deltatimehi, timelo-fOffsetLoGain, deltatimelo);
|
---|
248 | tix.SetGainSaturation(sathi, sathi, satlo);
|
---|
249 |
|
---|
250 | } /* while (pixel.Next()) */
|
---|
251 |
|
---|
252 | fArrTime->SetReadyToSave();
|
---|
253 | fSignals->SetReadyToSave();
|
---|
254 |
|
---|
255 | return kTRUE;
|
---|
256 | }
|
---|
257 |
|
---|
258 | // --------------------------------------------------------------------------
|
---|
259 | //
|
---|
260 | // In addition to the resources of the base-class MExtractor:
|
---|
261 | // MJPedestal.MExtractor.LoGainStartShift: -2.8
|
---|
262 | //
|
---|
263 | Int_t MExtractTimeAndCharge::ReadEnv(const TEnv &env, TString prefix, Bool_t print)
|
---|
264 | {
|
---|
265 |
|
---|
266 | Bool_t rc = MExtractTime::ReadEnv(env, prefix, print);
|
---|
267 |
|
---|
268 | if (rc)
|
---|
269 | SetLoGainStartShift();
|
---|
270 |
|
---|
271 | if (IsEnvDefined(env, prefix, "LoGainStartShift", print))
|
---|
272 | {
|
---|
273 | fLoGainStartShift = GetEnvValue(env, prefix, "LoGainStartShift", fgLoGainStartShift);
|
---|
274 | SetLoGainStartShift(fLoGainStartShift);
|
---|
275 | rc = kTRUE;
|
---|
276 | }
|
---|
277 |
|
---|
278 | if (IsEnvDefined(env, prefix, "LoGainSwitch", print))
|
---|
279 | {
|
---|
280 | fLoGainSwitch = GetEnvValue(env, prefix, "LoGainSwitch", fLoGainSwitch);
|
---|
281 | rc = kTRUE;
|
---|
282 | }
|
---|
283 |
|
---|
284 | return rc;
|
---|
285 | }
|
---|
286 |
|
---|
287 | void MExtractTimeAndCharge::Print(Option_t *o) const
|
---|
288 | {
|
---|
289 | if (IsA()==Class())
|
---|
290 | *fLog << GetDescriptor() << ":" << endl;
|
---|
291 |
|
---|
292 | *fLog << dec;
|
---|
293 | *fLog << " Taking " << fWindowSizeHiGain
|
---|
294 | << " HiGain samples from slice " << (Int_t)fHiGainFirst
|
---|
295 | << " to " << (Int_t)(fHiGainLast+fHiLoLast) << " incl" << endl;
|
---|
296 | *fLog << " Taking " << fWindowSizeLoGain
|
---|
297 | << " LoGain samples from slice " << (Int_t)fLoGainFirst
|
---|
298 | << " to " << (Int_t)fLoGainLast << " incl" << endl;
|
---|
299 |
|
---|
300 | *fLog << " LoGainStartShift: " << fLoGainStartShift << endl;
|
---|
301 | *fLog << " LoGainSwitch: " << (Int_t)fLoGainSwitch << endl;
|
---|
302 | MExtractTime::Print(o);
|
---|
303 | }
|
---|