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 variables have to be set by the derived class and
|
---|
35 | // do not have defaults:
|
---|
36 | // - fNumHiGainSamples
|
---|
37 | // - fNumLoGainSamples
|
---|
38 | // - fSqrtHiGainSamples
|
---|
39 | // - fSqrtLoGainSamples
|
---|
40 | //
|
---|
41 | // Input Containers:
|
---|
42 | // MRawEvtData
|
---|
43 | // MRawRunHeader
|
---|
44 | // MPedestalCam
|
---|
45 | //
|
---|
46 | // Output Containers:
|
---|
47 | // MArrivalTimeCam
|
---|
48 | // MExtractedSignalCam
|
---|
49 | //
|
---|
50 | //////////////////////////////////////////////////////////////////////////////
|
---|
51 | #include "MExtractTimeAndCharge.h"
|
---|
52 |
|
---|
53 | #include "MLog.h"
|
---|
54 | #include "MLogManip.h"
|
---|
55 |
|
---|
56 | #include "MParList.h"
|
---|
57 |
|
---|
58 | #include "MRawEvtData.h"
|
---|
59 | #include "MRawEvtPixelIter.h"
|
---|
60 | #include "MRawRunHeader.h"
|
---|
61 |
|
---|
62 | #include "MPedestalCam.h"
|
---|
63 | #include "MPedestalPix.h"
|
---|
64 |
|
---|
65 | #include "MArrivalTimeCam.h"
|
---|
66 | #include "MArrivalTimePix.h"
|
---|
67 |
|
---|
68 | #include "MExtractedSignalCam.h"
|
---|
69 | #include "MExtractedSignalPix.h"
|
---|
70 |
|
---|
71 | ClassImp(MExtractTimeAndCharge);
|
---|
72 |
|
---|
73 | using namespace std;
|
---|
74 |
|
---|
75 | const Float_t MExtractTimeAndCharge::fgLoGainStartShift = -2.8;
|
---|
76 |
|
---|
77 | // --------------------------------------------------------------------------
|
---|
78 | //
|
---|
79 | // Default constructor.
|
---|
80 | //
|
---|
81 | // Sets:
|
---|
82 | // - fLoGainStartShift to fgLoGainStartShift+fgOffsetLoGain
|
---|
83 | //
|
---|
84 | MExtractTimeAndCharge::MExtractTimeAndCharge(const char *name, const char *title)
|
---|
85 | {
|
---|
86 | fName = name ? name : "MExtractTimeAndCharge";
|
---|
87 | fTitle = title ? title : "Base class for signal and time extractors";
|
---|
88 |
|
---|
89 | SetLoGainStartShift();
|
---|
90 | }
|
---|
91 |
|
---|
92 | // --------------------------------------------------------------------------
|
---|
93 | //
|
---|
94 | // The PreProcess searches for the following input containers:
|
---|
95 | // - MRawEvtData
|
---|
96 | // - MRawRunHeader
|
---|
97 | // - MPedestalCam
|
---|
98 | //
|
---|
99 | // The following output containers are also searched and created if
|
---|
100 | // they were not found:
|
---|
101 | //
|
---|
102 | // - MExtractedSignalCam
|
---|
103 | // - MArrivalTimeCam
|
---|
104 | //
|
---|
105 | Int_t MExtractTimeAndCharge::PreProcess(MParList *pList)
|
---|
106 | {
|
---|
107 |
|
---|
108 | if (!MExtractTime::PreProcess(pList))
|
---|
109 | return kFALSE;
|
---|
110 |
|
---|
111 | fSignals = (MExtractedSignalCam*)pList->FindCreateObj("MExtractedSignalCam",AddSerialNumber(fNameSignalCam));
|
---|
112 | if (!fSignals)
|
---|
113 | {
|
---|
114 | *fLog << err << fNameSignalCam.Data() << " could not be found nor created... aborting" << endl;
|
---|
115 | return kFALSE;
|
---|
116 | }
|
---|
117 |
|
---|
118 | return kTRUE;
|
---|
119 | }
|
---|
120 |
|
---|
121 | // --------------------------------------------------------------------------
|
---|
122 | //
|
---|
123 | // The ReInit calls:
|
---|
124 | // - MExtractor::ReInit()
|
---|
125 | //
|
---|
126 | // Call:
|
---|
127 | // - MArrivalTimeCam::SetUsedFADCSlices(fHiGainFirst, fHiGainLast, fNumHiGainSamples,
|
---|
128 | // fLoGainFirst, fLoGainLast, fNumLoGainSamples);
|
---|
129 | //
|
---|
130 | Bool_t MExtractTimeAndCharge::ReInit(MParList *pList)
|
---|
131 | {
|
---|
132 | if (!MExtractTime::ReInit(pList))
|
---|
133 | return kFALSE;
|
---|
134 |
|
---|
135 | fSignals->SetUsedFADCSlices(fHiGainFirst, fHiGainLast+fHiLoLast, fNumHiGainSamples,
|
---|
136 | fLoGainFirst, fLoGainLast, fNumLoGainSamples);
|
---|
137 |
|
---|
138 | *fLog << dec << endl;
|
---|
139 | *fLog << inf << "Taking " << fNumHiGainSamples
|
---|
140 | << " HiGain samples from slice " << (Int_t)fHiGainFirst
|
---|
141 | << " to " << (Int_t)(fHiGainLast+fHiLoLast) << " incl" << endl;
|
---|
142 | *fLog << inf << "Taking " << fNumLoGainSamples
|
---|
143 | << " LoGain samples from slice " << (Int_t)fLoGainFirst
|
---|
144 | << " to " << (Int_t)fLoGainLast << " incl" << endl;
|
---|
145 |
|
---|
146 | return kTRUE;
|
---|
147 | }
|
---|
148 |
|
---|
149 | void MExtractTimeAndCharge::FindTimeAndChargeHiGain(Byte_t *firstused, Byte_t *logain, Float_t &sum, Float_t &dsum,
|
---|
150 | Float_t &time, Float_t &dtime,
|
---|
151 | Byte_t &sat, const MPedestalPix &ped, const Bool_t abflag)
|
---|
152 | {
|
---|
153 | return;
|
---|
154 | }
|
---|
155 |
|
---|
156 | void MExtractTimeAndCharge::FindTimeAndChargeLoGain(Byte_t *firstused, Float_t &sum, Float_t &dsum,
|
---|
157 | Float_t &time, Float_t &dtime,
|
---|
158 | Byte_t &sat, const MPedestalPix &ped, const Bool_t abflag)
|
---|
159 | {
|
---|
160 | return;
|
---|
161 | }
|
---|
162 |
|
---|
163 |
|
---|
164 | // --------------------------------------------------------------------------
|
---|
165 | //
|
---|
166 | // Calculate the integral of the FADC time slices and store them as a new
|
---|
167 | // pixel in the MArrivalTimeCam container.
|
---|
168 | // Calculate the integral of the FADC time slices and store them as a new
|
---|
169 | // pixel in the MExtractedSignalCam container.
|
---|
170 | // The functions FindTimeAndChargeHiGain() and FindTimeAndChargeLoGain are
|
---|
171 | // supposed to extract the signal themselves.
|
---|
172 | //
|
---|
173 | Int_t MExtractTimeAndCharge::Process()
|
---|
174 | {
|
---|
175 |
|
---|
176 | MRawEvtPixelIter pixel(fRawEvt);
|
---|
177 | fArrTime->Clear();
|
---|
178 | fSignals->Clear();
|
---|
179 |
|
---|
180 | while (pixel.Next())
|
---|
181 | {
|
---|
182 | //
|
---|
183 | // Find signal in hi- and lo-gain
|
---|
184 | //
|
---|
185 | Float_t sumhi =0., deltasumhi =0.;
|
---|
186 | Float_t timehi=0., deltatimehi=0.;
|
---|
187 | Byte_t sathi=0;
|
---|
188 |
|
---|
189 | const Int_t pixid = pixel.GetPixelId();
|
---|
190 | const MPedestalPix &ped = (*fPedestals)[pixid];
|
---|
191 | const Bool_t higainabflag = pixel.HasABFlag();
|
---|
192 |
|
---|
193 | FindTimeAndChargeHiGain(pixel.GetHiGainSamples()+fHiGainFirst, pixel.GetLoGainSamples(),
|
---|
194 | sumhi, deltasumhi,
|
---|
195 | timehi, deltatimehi,
|
---|
196 | sathi, ped, higainabflag);
|
---|
197 |
|
---|
198 | Float_t sumlo =0., deltasumlo =0.;
|
---|
199 | Float_t timelo=0., deltatimelo=0.;
|
---|
200 | Byte_t satlo=0;
|
---|
201 |
|
---|
202 | //
|
---|
203 | // Adapt the low-gain extraction range from the obtained high-gain time
|
---|
204 | //
|
---|
205 | if (pixel.HasLoGain())
|
---|
206 | {
|
---|
207 | fLoGainFirstSave = fLoGainFirst;
|
---|
208 | fLoGainFirst = (Int_t)(timehi+fLoGainStartShift);
|
---|
209 | fLoGainFirst = fLoGainFirst < fLoGainFirstSave ? fLoGainFirstSave : fLoGainFirst;
|
---|
210 |
|
---|
211 | if ( fLoGainFirst < fLoGainLast )
|
---|
212 | {
|
---|
213 | const Bool_t logainabflag = (higainabflag + pixel.GetNumHiGainSamples()) & 0x1;
|
---|
214 | FindTimeAndChargeLoGain(pixel.GetLoGainSamples()+fLoGainFirst,
|
---|
215 | sumlo, deltasumlo,
|
---|
216 | timelo, deltatimelo,
|
---|
217 | satlo, ped, logainabflag);
|
---|
218 | }
|
---|
219 |
|
---|
220 | fLoGainFirst = fLoGainFirstSave;
|
---|
221 | }
|
---|
222 |
|
---|
223 | MExtractedSignalPix &pix = (*fSignals)[pixid];
|
---|
224 | MArrivalTimePix &tix = (*fArrTime)[pixid];
|
---|
225 |
|
---|
226 | pix.SetExtractedSignal(sumhi, deltasumhi,sumlo, deltasumlo);
|
---|
227 | pix.SetGainSaturation(sathi, sathi, satlo);
|
---|
228 |
|
---|
229 | tix.SetArrivalTime(timehi, deltatimehi, timelo-fOffsetLoGain, deltatimelo);
|
---|
230 | tix.SetGainSaturation(sathi, sathi, satlo);
|
---|
231 |
|
---|
232 | } /* while (pixel.Next()) */
|
---|
233 |
|
---|
234 | fArrTime->SetReadyToSave();
|
---|
235 | fSignals->SetReadyToSave();
|
---|
236 |
|
---|
237 | return kTRUE;
|
---|
238 | }
|
---|
239 |
|
---|
240 | // --------------------------------------------------------------------------
|
---|
241 | //
|
---|
242 | // In addition to the resources of the base-class MExtractor:
|
---|
243 | // MJPedestal.MExtractor.LoGainStartShift: -2.8
|
---|
244 | //
|
---|
245 | Int_t MExtractTimeAndCharge::ReadEnv(const TEnv &env, TString prefix, Bool_t print)
|
---|
246 | {
|
---|
247 | Bool_t rc = kFALSE;
|
---|
248 |
|
---|
249 | if (IsEnvDefined(env, prefix, "LoGainStartShift", print))
|
---|
250 | {
|
---|
251 | fLoGainStartShift = GetEnvValue(env, prefix, "LoGainStartShift", fLoGainStartShift);
|
---|
252 | rc = kTRUE;
|
---|
253 | }
|
---|
254 |
|
---|
255 |
|
---|
256 | return MExtractTime::ReadEnv(env, prefix, print) ? kTRUE : rc;
|
---|
257 | }
|
---|
258 |
|
---|
259 | void MExtractTimeAndCharge::Print(Option_t *o) const
|
---|
260 | {
|
---|
261 | *fLog << all;
|
---|
262 | if (IsA()==MExtractTimeAndCharge::Class())
|
---|
263 | *fLog << GetDescriptor() << ":" << endl;
|
---|
264 |
|
---|
265 | *fLog << " LoGainStartShift: " << fLoGainStartShift << endl;
|
---|
266 | MExtractTime::Print(o);
|
---|
267 | }
|
---|