source: trunk/MagicSoft/Mars/mpedestal/MPedCalcPedRun.cc@ 6112

Last change on this file since 6112 was 5887, checked in by gaug, 20 years ago
*** empty log message ***
File size: 13.8 KB
Line 
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): Josep Flix 04/2001 <mailto:jflix@ifae.es>
19! Author(s): Thomas Bretz 05/2001 <mailto:tbretz@astro.uni-wuerzburg.de>
20! Author(s): Sebastian Commichau 12/2003
21! Author(s): Javier Rico 01/2004 <mailto:jrico@ifae.es>
22! Author(s): Markus Gaug 01/2004 <mailto:markus@ifae.es>
23!
24! Copyright: MAGIC Software Development, 2000-2004
25!
26!
27\* ======================================================================== */
28/////////////////////////////////////////////////////////////////////////////
29//
30// MPedCalcPedRun
31//
32// This task takes a pedestal run file and fills MPedestalCam during
33// the Process() with the pedestal and rms computed in an event basis.
34// In the PostProcess() MPedestalCam is finally filled with the pedestal
35// mean and rms computed in a run basis.
36// More than one run (file) can be merged
37//
38// MPedCalcPedRun applies the following formula (1):
39//
40// Pedestal per slice = sum(x_i) / n / slices
41// PedRMS per slice = Sqrt( ( sum(x_i^2) - sum(x_i)^2/n ) / n-1 / slices )
42//
43// where x_i is the sum of "slices" FADC slices and sum means the sum over all
44// events. "n" is the number of events, "slices" is the number of summed FADC samples.
45//
46// Note that the slice-to-slice fluctuations are not Gaussian, but Poissonian, thus
47// asymmetric and they are correlated.
48//
49// It is important to know that the Pedestal per slice and PedRMS per slice depend
50// on the number of used FADC slices, as seen in the following plots:
51//
52//Begin_Html
53/*
54<img src="images/PedestalStudyInner.gif">
55*/
56//End_Html
57//
58//Begin_Html
59/*
60<img src="images/PedestalStudyOuter.gif">
61*/
62//
63// The plots show the inner and outer pixels, respectivly and have the following meaning:
64//
65// 1) The calculated mean pedestal per slice (from MPedCalcPedRun)
66// 2) The fitted mean pedestal per slice (from MHPedestalCam)
67// 3) The calculated pedestal RMS per slice (from MPedCalcPedRun)
68// 4) The fitted sigma of the pedestal distribution per slice
69// (from MHPedestalCam)
70// 5) The relative difference between calculation and histogram fit
71// for the mean
72// 6) The relative difference between calculation and histogram fit
73// for the sigma or RMS, respectively.
74//
75// The calculated means do not change significantly except for the case of 2 slices,
76// however the RMS changes from 5.7 per slice in the case of 2 extracted slices
77// to 8.3 per slice in the case of 26 extracted slices. This change is very significant.
78//
79// The plots have been produced on run 20123. You can reproduce them using
80// the macro pedestalstudies.C
81//
82// Usage of this class:
83// ====================
84//
85// Call: SetRange(higainfirst, higainlast, logainfirst, logainlast)
86// to modify the ranges in which the window is allowed to move.
87// Defaults are:
88//
89// fHiGainFirst = fgHiGainFirst = 0
90// fHiGainLast = fgHiGainLast = 29
91// fLoGainFirst = fgLoGainFirst = 0
92// fLoGainLast = fgLoGainLast = 14
93//
94// Call: SetWindowSize(windowhigain, windowlogain)
95// to modify the sliding window widths. Windows have to be an even number.
96// In case of odd numbers, the window will be modified.
97//
98// Defaults are:
99//
100// fHiGainWindowSize = fgHiGainWindowSize = 14
101// fLoGainWindowSize = fgLoGainWindowSize = 0
102//
103//
104// ToDo:
105// - Take a setup file (ReadEnv-implementation) as input
106//
107//
108// Input Containers:
109// MRawEvtData
110// MRawRunHeader
111// MRawEvtHeader
112// MGeomCam
113//
114// Output Containers:
115// MPedestalCam
116//
117// See also: MPedestalCam, MPedestalPix, MHPedestalCam, MExtractor
118//
119/////////////////////////////////////////////////////////////////////////////
120#include "MPedCalcPedRun.h"
121
122#include "MParList.h"
123
124#include "MLog.h"
125#include "MLogManip.h"
126
127#include "MRawRunHeader.h"
128#include "MRawEvtHeader.h"
129#include "MRawEvtPixelIter.h"
130#include "MRawEvtData.h"
131
132#include "MPedestalPix.h"
133#include "MPedestalCam.h"
134
135#include "MGeomPix.h"
136#include "MGeomCam.h"
137
138#include "MExtractPedestal.h"
139#include "MExtractTimeAndCharge.h"
140
141#include "MTriggerPattern.h"
142
143ClassImp(MPedCalcPedRun);
144
145using namespace std;
146
147const UShort_t MPedCalcPedRun::fgExtractWinFirst = 0;
148const UShort_t MPedCalcPedRun::fgExtractWinSize = 6;
149const UInt_t MPedCalcPedRun::gkFirstRunWithFinalBits = 45605;
150// --------------------------------------------------------------------------
151//
152// Default constructor:
153//
154// Sets:
155// - all pointers to NULL
156// - fWindowSizeHiGain to fgHiGainWindowSize
157// - fWindowSizeLoGain to fgLoGainWindowSize
158//
159// Calls:
160// - AddToBranchList("fHiGainPixId");
161// - AddToBranchList("fHiGainFadcSamples");
162// - SetRange(fgHiGainFirst, fgHiGainLast, fgLoGainFirst, fgLoGainLast)
163//
164MPedCalcPedRun::MPedCalcPedRun(const char *name, const char *title)
165 : fOverlap(0), fIsFirstPedRun(kFALSE), fUsedEvents(0), fTrigPattern(NULL)
166{
167 fName = name ? name : "MPedCalcPedRun";
168 fTitle = title ? title : "Task to calculate pedestals from pedestal runs raw data";
169
170 SetExtractWindow(fgExtractWinFirst, fgExtractWinSize);
171
172 // SetNumEventsDump(1001);
173 // SetNumAreasDump(1001);
174 // SetNumSectorsDump(1001);
175}
176
177// --------------------------------------------------------------------------
178//
179// In case that the variables fExtractLast is greater than the number of
180// High-Gain FADC samples obtained from the run header, the flag
181// fOverlap is set to the difference and fExtractLast is set back by the
182// same number of slices.
183//
184void MPedCalcPedRun::CheckExtractionWindow()
185{
186 const UShort_t lastavailable = fRunHeader->GetNumSamplesHiGain()-1;
187
188 if (fExtractWinLast <= lastavailable)
189 return;
190
191 const UShort_t diff = fExtractWinLast - lastavailable;
192
193 *fLog << warn << endl;
194 *fLog << "Selected ExtractWindow [" << fExtractWinFirst << "," << fExtractWinLast;
195 *fLog << "] ranges out of range [0," << lastavailable << "]." << endl;
196 *fLog << "Using " << diff << " samples from the 'Lo-Gain' slices for the pedestal extraction" << endl;
197
198 fExtractWinLast -= diff;
199 fOverlap = diff;
200}
201
202void MPedCalcPedRun::Reset()
203{
204
205 MExtractPedestal::ResetArrays();
206 fUsedEvents = 0;
207}
208
209// --------------------------------------------------------------------------
210//
211// Set fIsFirstPedRun=kTRUE
212//
213Int_t MPedCalcPedRun::PreProcess(MParList *pList)
214{
215
216 fUsedEvents = 0;
217 fIsFirstPedRun = kTRUE;
218 fIsNotPedRun = kFALSE;
219
220 fTrigPattern = (MTriggerPattern*)pList->FindObject("MTriggerPattern");
221 if (!fTrigPattern)
222 *fLog << warn << GetDescriptor()
223 << ": MTriggerPattern not found... Cannot use interlaced pedestal events." << endl;
224
225 return MExtractPedestal::PreProcess(pList);
226}
227
228// --------------------------------------------------------------------------
229//
230// The run type is checked for "kRTPedestal"
231// and the variable fIsNotPedRun is set in that case
232//
233Bool_t MPedCalcPedRun::ReInit(MParList *pList)
234{
235
236 if (!MExtractPedestal::ReInit(pList))
237 return kFALSE;
238
239 CheckExtractionWindow();
240
241 //
242 // If this is the first ped run, the next run (call to ReInit)
243 // is not the first anymore
244 //
245 if (fRunHeader->GetRunType()==MRawRunHeader::kRTPedestal)
246 {
247 fIsFirstPedRun = kFALSE;
248 fIsNotPedRun = kFALSE;
249 return kTRUE;
250 }
251
252 if (fRunHeader->GetRunType()==MRawRunHeader::kRTCalibration)
253 {
254 TString proj(fRunHeader->GetProjectName());
255 proj.ToLower();
256
257 // test if a continuous light run has been declared as calibration...
258 if (proj.Contains("cl"))
259 {
260 fIsFirstPedRun = kFALSE;
261 fIsNotPedRun = kFALSE;
262 return kTRUE;
263 }
264 }
265
266
267
268 fIsNotPedRun = kTRUE;
269 //
270 // If this is the first call to ReInit (before reading the first file)
271 // nothing should be done. It occurs for the case that the first treated
272 // file is not of pedestal type.
273 //
274 if (fIsFirstPedRun)
275 return kTRUE;
276
277 //
278 // In the other case, produce the MPedestalCam to be use the subsequent (non-pedestal) events
279 //
280 *fLog << inf << "Finalizing pedestal calculations..." << flush;
281
282 if (!Finalize())
283 return kFALSE;
284
285 Reset();
286
287 return kTRUE;
288}
289
290// --------------------------------------------------------------------------
291//
292// Return kTRUE (without doing anything) in case that the run type is not
293// equal to 1 (pedestal run)
294//
295// Fill the MPedestalCam container with the signal mean and rms for the event.
296// Store the measured signal in arrays fSumx and fSumx2 so that we can
297// calculate the overall mean and rms in the PostProcess()
298//
299Int_t MPedCalcPedRun::Calc()
300{
301
302 if (fIsNotPedRun && !IsPedBitSet())
303 return kTRUE;
304
305 // if (fUsedEvents == fNumEventsDump)
306 // {
307 // *fLog << endl;
308 // *fLog << inf << GetDescriptor() << " : Finalize pedestal calculations..." << flush;
309 // Finalize();
310 // Reset();
311 // }
312
313 fUsedEvents++;
314
315 MRawEvtPixelIter pixel(fRawEvt);
316
317 while (pixel.Next())
318 {
319 const UInt_t idx = pixel.GetPixelId();
320 const UInt_t aidx = (*fGeom)[idx].GetAidx();
321 const UInt_t sector = (*fGeom)[idx].GetSector();
322
323 Float_t sum = 0.;
324 UInt_t ab0 = 0;
325 UInt_t ab1 = 0;
326
327 if (fExtractor)
328 CalcExtractor(pixel, sum, (*fPedestalsIn)[idx]);
329 else
330 CalcSums(pixel, sum, ab0, ab1);
331
332 fSumx[idx] += sum;
333 fAreaSumx[aidx] += sum;
334 fSectorSumx[sector] += sum;
335
336 const Float_t sqrsum = sum*sum;
337 fSumx2[idx] += sqrsum;
338 fAreaSumx2[aidx] += sqrsum;
339 fSectorSumx2[sector] += sqrsum;
340
341 fSumAB0[idx] += ab0;
342 fSumAB1[idx] += ab1;
343
344 fAreaSumAB0[aidx] += ab0;
345 fAreaSumAB1[aidx] += ab1;
346
347 fSectorSumAB0[aidx] += ab0;
348 fSectorSumAB1[aidx] += ab1;
349 }
350
351 fPedestalsOut->SetReadyToSave();
352
353 return kTRUE;
354}
355
356
357void MPedCalcPedRun::CalcExtractor(const MRawEvtPixelIter &pixel, Float_t &sum, MPedestalPix &ped)
358{
359 const Bool_t abflag = pixel.HasABFlag();
360
361 Byte_t *first = pixel.GetHiGainSamples() + fExtractWinFirst;
362 Byte_t *logain = pixel.GetLoGainSamples();
363
364 Byte_t sat = 0;
365
366 Float_t dummy;
367 fExtractor->FindTimeAndChargeHiGain(first,logain,sum,dummy,dummy,dummy,sat,ped,abflag);
368}
369
370void MPedCalcPedRun::CalcSums(const MRawEvtPixelIter &pixel, Float_t &sum, UInt_t &ab0, UInt_t &ab1)
371{
372
373 Byte_t *higain = pixel.GetHiGainSamples() + fExtractWinFirst;
374 Byte_t *ptr = higain;
375 Byte_t *end = ptr + fExtractWinSize;
376
377 const Bool_t abflag = pixel.HasABFlag();
378
379 Int_t sumi = 0;
380
381 Int_t cnt = 0;
382 do
383 {
384 sumi += *ptr;
385 if (!pixel.IsABFlagValid())
386 continue;
387
388 const Int_t abFlag = (fExtractWinFirst + abflag + cnt) & 0x1;
389 if (abFlag)
390 ab1 += *ptr;
391 else
392 ab0 += *ptr;
393
394 cnt++;
395 } while (++ptr != end);
396
397 if (fOverlap != 0)
398 {
399 ptr = pixel.GetLoGainSamples();
400 end = ptr + fOverlap;
401
402 do
403 {
404 sumi += *ptr;
405 if (!pixel.IsABFlagValid())
406 continue;
407
408 const Int_t abFlag = (fExtractWinFirst + abflag + cnt) & 0x1;
409 if (abFlag)
410 ab1 += *ptr;
411 else
412 ab0 += *ptr;
413
414 cnt++;
415 } while (++ptr != end);
416 }
417
418 sum = (Float_t)sumi;
419}
420
421
422// --------------------------------------------------------------------------
423//
424// Compute signal mean and rms in the whole run and store it in MPedestalCam
425//
426Int_t MPedCalcPedRun::Finalize()
427{
428
429 if (fUsedEvents == 0)
430 return kTRUE;
431
432 MRawEvtPixelIter pixel(fRawEvt);
433 while (pixel.Next())
434 CalcPixResults(fUsedEvents, pixel.GetPixelId());
435
436 //
437 // Loop over the (two) area indices to get the averaged pedestal per aidx
438 //
439 for (UInt_t aidx=0; aidx<fAreaValid.GetSize(); aidx++)
440 if (fAreaValid[aidx]>0)
441 CalcAreaResults(fUsedEvents, fAreaValid[aidx], aidx);
442
443 //
444 // Loop over the (six) sector indices to get the averaged pedestal per sector
445 //
446 for (UInt_t sector=0; sector<fSectorValid.GetSize(); sector++)
447 if (fSectorValid[sector]>0)
448 CalcSectorResults(fUsedEvents, fSectorValid[sector], sector);
449
450 fPedestalsOut->SetTotalEntries(fUsedEvents*fExtractWinSize);
451 fPedestalsOut->SetReadyToSave();
452
453 return kTRUE;
454}
455
456Int_t MPedCalcPedRun::PostProcess()
457{
458 if (!Finalize())
459 return kFALSE;
460
461 return MExtractPedestal::PostProcess();
462}
463
464//-------------------------------------------------------------
465//
466// Return if the pedestal bit was set from the calibration trigger box.
467// The last but one bit is used for the "pedestal-bit".
468//
469// This bit is set since run gkFirstRunWithFinalBits
470//
471Bool_t MPedCalcPedRun::IsPedBitSet()
472{
473
474 if (!fTrigPattern)
475 return kTRUE;
476
477 if (fRunHeader->GetRunNumber() < gkFirstRunWithFinalBits)
478 return kTRUE;
479
480 return (fTrigPattern->GetPrescaled() & MTriggerPattern::kPedestal) ? kTRUE : kFALSE;
481}
482
483void MPedCalcPedRun::Print(Option_t *o) const
484{
485
486 MExtractPedestal::Print(o);
487
488 const Int_t last = fExtractor
489 ? fExtractWinFirst + fExtractor->GetWindowSizeHiGain() -1
490 : fExtractWinLast;
491
492 *fLog << "ExtractWindow from slice " << fExtractWinFirst << " to " << last << " incl." << endl;
493 *fLog << "Num overlap lo-gain slices: " << fOverlap << endl;
494 *fLog << "First pedrun out of sequence: " << (fIsFirstPedRun?"yes":"no") << endl;
495 *fLog << "Number of used events so far: " << fUsedEvents << endl;
496}
Note: See TracBrowser for help on using the repository browser.