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

Last change on this file since 7178 was 7130, checked in by tbretz, 20 years ago
*** empty log message ***
File size: 13.9 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 << inf << "MTriggerPattern not found... Cannot use interlaced pedestal events." << endl;
223
224 return MExtractPedestal::PreProcess(pList);
225}
226
227// --------------------------------------------------------------------------
228//
229// The run type is checked for "kRTPedestal"
230// and the variable fIsNotPedRun is set in that case
231//
232Bool_t MPedCalcPedRun::ReInit(MParList *pList)
233{
234
235 if (!MExtractPedestal::ReInit(pList))
236 return kFALSE;
237
238 CheckExtractionWindow();
239
240 //
241 // If this is the first ped run, the next run (call to ReInit)
242 // is not the first anymore
243 //
244 switch (fRunHeader->GetRunType())
245 {
246 case MRawRunHeader::kRTPedestal:
247 case MRawRunHeader::kRTMonteCarlo:
248 fIsFirstPedRun = kFALSE;
249 fIsNotPedRun = kFALSE;
250 return kTRUE;
251
252 case 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 fIsNotPedRun = kTRUE;
268
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 if (fIntermediateStorage)
337 (*fPedestalsInter)[idx].Set(sum,0.,0.,fUsedEvents);
338
339 const Float_t sqrsum = sum*sum;
340 fSumx2[idx] += sqrsum;
341 fAreaSumx2[aidx] += sqrsum;
342 fSectorSumx2[sector] += sqrsum;
343
344 fSumAB0[idx] += ab0;
345 fSumAB1[idx] += ab1;
346
347 fAreaSumAB0[aidx] += ab0;
348 fAreaSumAB1[aidx] += ab1;
349
350 fSectorSumAB0[aidx] += ab0;
351 fSectorSumAB1[aidx] += ab1;
352 }
353
354 fPedestalsOut->SetReadyToSave();
355
356 return kTRUE;
357}
358
359
360void MPedCalcPedRun::CalcExtractor(const MRawEvtPixelIter &pixel, Float_t &sum, MPedestalPix &ped)
361{
362 const Bool_t abflag = pixel.HasABFlag();
363
364 Byte_t *first = pixel.GetHiGainSamples() + fExtractWinFirst;
365 Byte_t *logain = pixel.GetLoGainSamples();
366
367 Byte_t sat = 0;
368
369 Float_t dummy;
370 fExtractor->FindTimeAndChargeHiGain(first,logain,sum,dummy,dummy,dummy,sat,ped,abflag);
371}
372
373void MPedCalcPedRun::CalcSums(const MRawEvtPixelIter &pixel, Float_t &sum, UInt_t &ab0, UInt_t &ab1)
374{
375
376 Byte_t *higain = pixel.GetHiGainSamples() + fExtractWinFirst;
377 Byte_t *ptr = higain;
378 Byte_t *end = ptr + fExtractWinSize;
379
380 const Bool_t abflag = pixel.HasABFlag();
381
382 Int_t sumi = 0;
383
384 Int_t cnt = 0;
385 do
386 {
387 sumi += *ptr;
388 if (!pixel.IsABFlagValid())
389 continue;
390
391 const Int_t abFlag = (fExtractWinFirst + abflag + cnt) & 0x1;
392 if (abFlag)
393 ab1 += *ptr;
394 else
395 ab0 += *ptr;
396
397 cnt++;
398 } while (++ptr != end);
399
400 if (fOverlap != 0)
401 {
402 ptr = pixel.GetLoGainSamples();
403 end = ptr + fOverlap;
404
405 do
406 {
407 sumi += *ptr;
408 if (!pixel.IsABFlagValid())
409 continue;
410
411 const Int_t abFlag = (fExtractWinFirst + abflag + cnt) & 0x1;
412 if (abFlag)
413 ab1 += *ptr;
414 else
415 ab0 += *ptr;
416
417 cnt++;
418 } while (++ptr != end);
419 }
420
421 sum = (Float_t)sumi;
422}
423
424
425// --------------------------------------------------------------------------
426//
427// Compute signal mean and rms in the whole run and store it in MPedestalCam
428//
429Int_t MPedCalcPedRun::Finalize()
430{
431
432 if (fUsedEvents == 0)
433 return kTRUE;
434
435 MRawEvtPixelIter pixel(fRawEvt);
436 while (pixel.Next())
437 CalcPixResults(fUsedEvents, pixel.GetPixelId());
438
439 //
440 // Loop over the (two) area indices to get the averaged pedestal per aidx
441 //
442 for (UInt_t aidx=0; aidx<fAreaValid.GetSize(); aidx++)
443 if (fAreaValid[aidx]>0)
444 CalcAreaResults(fUsedEvents, fAreaValid[aidx], aidx);
445
446 //
447 // Loop over the (six) sector indices to get the averaged pedestal per sector
448 //
449 for (UInt_t sector=0; sector<fSectorValid.GetSize(); sector++)
450 if (fSectorValid[sector]>0)
451 CalcSectorResults(fUsedEvents, fSectorValid[sector], sector);
452
453 fPedestalsOut->SetTotalEntries(fUsedEvents*fExtractWinSize);
454 fPedestalsOut->SetReadyToSave();
455
456 return kTRUE;
457}
458
459Int_t MPedCalcPedRun::PostProcess()
460{
461 if (!Finalize())
462 return kFALSE;
463
464 return MExtractPedestal::PostProcess();
465}
466
467//-----------------------------------------------------------------------
468//
469// Return if the pedestal bit was set from the calibration trigger box.
470// The last but one bit is used for the "pedestal-bit".
471//
472// This bit is set since run gkFirstRunWithFinalBits
473//
474Bool_t MPedCalcPedRun::IsPedBitSet()
475{
476 if (fRunHeader->GetRunNumber()<gkFirstRunWithFinalBits)
477 return kFALSE;
478
479 if (!fTrigPattern)
480 return kFALSE;
481
482 return (fTrigPattern->GetPrescaled() & MTriggerPattern::kPedestal) ? kTRUE : kFALSE;
483}
484
485void MPedCalcPedRun::Print(Option_t *o) const
486{
487
488 MExtractPedestal::Print(o);
489
490 const Int_t last = fExtractor
491 ? fExtractWinFirst + fExtractor->GetWindowSizeHiGain() -1
492 : fExtractWinLast;
493
494 *fLog << "ExtractWindow from slice " << fExtractWinFirst << " to " << last << " incl." << endl;
495 *fLog << "Num overlap lo-gain slices: " << fOverlap << endl;
496 *fLog << "First pedrun out of sequence: " << (fIsFirstPedRun?"yes":"no") << endl;
497 *fLog << "Number of used events so far: " << fUsedEvents << endl;
498}
Note: See TracBrowser for help on using the repository browser.