source: trunk/MagicSoft/Mars/mcalib/MCalibrateData.cc@ 7093

Last change on this file since 7093 was 7053, checked in by tbretz, 20 years ago
*** empty log message ***
File size: 28.2 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): Javier Lopez 12/2003 <mailto:jlopez@ifae.es>
19! Author(s): Javier Rico 01/2004 <mailto:jrico@ifae.es>
20! Author(s): Wolfgang Wittek 02/2004 <mailto:wittek@mppmu.mpg.de>
21! Author(s): Markus Gaug 04/2004 <mailto:markus@ifae.es>
22! Author(s): Hendrik Bartko 08/2004 <mailto:hbartko@mppmu.mpg.de>
23! Author(s): Thomas Bretz 08/2004 <mailto:tbretz@astro.uni-wuerzburg.de>
24!
25! Copyright: MAGIC Software Development, 2000-2004
26!
27!
28\* ======================================================================== */
29
30///////////////////////////////////////////////////////////////////////////////////
31//
32// MCalibrateData
33//
34// This task takes the integrated charge from MExtractedSignal and applies
35// the calibration constants from MCalibrationCam to convert the summed FADC
36// slices into photons. The number of photons obtained is stored in MSignalCam.
37// Optionally, the calibration of pedestals from an MPedestalCam container into
38// an MPedPhotCam container can be chosen with the member functions
39// SetPedestalType(). Default is 'kRun', i.e. calibration of pedestals from a
40// dedicated pedestal run.
41// In case, the chosen pedestal type is kRun or kEvent, in ReInit() the MPedPhotCam
42// container is filled using the information from MPedestalCam, MExtractedSignalCam,
43// MCalibrationChargeCam and MCalibrationQECam
44//
45// Selection of different calibration methods is allowed through the
46// SetCalibrationMode() member function (default: kFfactor)
47//
48// The calibration modes which exclude non-valid pixels are the following:
49//
50// kFfactor: calibrates using the F-Factor method
51// kBlindpixel: calibrates using the BlindPixel method
52// kBlindpixel: calibrates using the BlindPixel method
53// kFlatCharge: perform a charge flat-flatfielding. Outer pixels are area-corrected.
54// kDummy: calibrates with fixed conversion factors of 1 and errors of 0.
55//
56// The calibration modes which include all pixels regardless of their validity is:
57//
58// kNone: calibrates with fixed conversion factors of 1 and errors of 0.
59//
60// Use the kDummy and kNone methods ONLY FOR DEBUGGING!
61//
62//
63// This class can calibrate data and/or pedestals. To switch off calibration of data
64// set the Calibration Mode to kSkip. To switch on pedestal calibration call either
65// SetPedestalFlag(MCalibrateData::kRun) (calibration is done once in ReInit)
66// SetPedestalFlag(MCalibrateData::kEvent) (calibration is done for each event)
67//
68// By calling AddPedestal() you can control the name of the
69// MPedestalCam and/or MPedPhotCam container which is used.
70//
71// Assume you want to calibrate "MPedestalCam" once and "MPedestalFromLoGain" [MPedestalCam]
72// event-by-event, so:
73// MCalibrateData cal1;
74// cal1.SetCalibrationMode(MCalibrateData::kSkip);
75// cal1.SetPedestalFlag(MCalibrateData::kRun);
76// MCalibrateData cal2;
77// cal2.SetCalibrationMode(MCalibrateData::kSkip);
78// cal2.AddPedestal("FromLoGain");
79// cal2.SetPedestalFlag(MCalibrateData::kEvent);
80//
81//
82// Input Containers:
83// [MPedestalCam]
84// [MExtractedSignalCam]
85// [MCalibrationChargeCam]
86// [MCalibrationQECam]
87// MBadPixelsCam
88//
89// Output Containers:
90// [MPedPhotCam]
91// [MSignalCam]
92//
93// See also: MJCalibration, MJPedestal, MJExtractSignal, MJExtractCalibTest
94//
95//////////////////////////////////////////////////////////////////////////////
96#include "MCalibrateData.h"
97
98#include <fstream>
99
100#include <TEnv.h>
101
102#include "MLog.h"
103#include "MLogManip.h"
104
105#include "MParList.h"
106#include "MH.h"
107
108#include "MGeomCam.h"
109
110#include "MPedestalCam.h"
111#include "MPedestalPix.h"
112
113#include "MCalibrationChargeCam.h"
114#include "MCalibrationChargePix.h"
115
116#include "MCalibrationQECam.h"
117#include "MCalibrationQEPix.h"
118
119#include "MCalibConstCam.h"
120#include "MCalibConstPix.h"
121
122#include "MExtractedSignalCam.h"
123#include "MExtractedSignalPix.h"
124
125#include "MPedPhotCam.h"
126#include "MPedPhotPix.h"
127
128#include "MBadPixelsCam.h"
129#include "MBadPixelsPix.h"
130
131#include "MSignalCam.h"
132
133ClassImp(MCalibrateData);
134
135using namespace std;
136
137const Float_t MCalibrateData::fgCalibConvMinLimit = 0.01;
138const Float_t MCalibrateData::fgCalibConvMaxLimit = 5.;
139// --------------------------------------------------------------------------
140//
141// Default constructor.
142//
143// Sets all pointers to NULL
144//
145// Initializes:
146// - fCalibrationMode to kDefault
147// - fPedestalFlag to kNo
148//
149MCalibrateData::MCalibrateData(CalibrationMode_t calmode,const char *name, const char *title)
150 : fGeomCam(NULL), fBadPixels(NULL), fCalibrations(NULL),
151 fQEs(NULL), fSignals(NULL), fCerPhotEvt(NULL), fCalibConstCam(NULL),
152 fPedestalFlag(kNo), fSignalType(kPhot), fRenormFactor(1.)
153{
154
155 fName = name ? name : "MCalibrateData";
156 fTitle = title ? title : "Task to calculate the number of photons in one event";
157
158 SetCalibrationMode(calmode);
159
160 SetCalibConvMinLimit();
161 SetCalibConvMaxLimit();
162
163 fNamesPedestal.SetOwner();
164}
165
166void MCalibrateData::AddPedestal(const char *name)
167{
168 TString ped(name);
169 TString pho(name);
170 ped.Prepend("MPedestal");
171 pho.Prepend("MPedPhot");
172
173 fNamesPedestal.Add(new TNamed(ped, pho));
174}
175
176void MCalibrateData::AddPedestal(const char *pedestal, const char *pedphot)
177{
178 fNamesPedestal.Add(new TNamed(pedestal, pedphot));
179}
180
181// --------------------------------------------------------------------------
182//
183// The PreProcess searches for the following input containers:
184//
185// - MGeomCam
186// - MPedestalCam
187// - MCalibrationChargeCam
188// - MCalibrationQECam
189// - MExtractedSignalCam
190// - MBadPixelsCam
191//
192// The following output containers are also searched and created if
193// they were not found:
194//
195// - MPedPhotCam
196// - MSignalCam
197//
198Int_t MCalibrateData::PreProcess(MParList *pList)
199{
200 // input containers
201
202 fBadPixels = (MBadPixelsCam*)pList->FindObject(AddSerialNumber("MBadPixelsCam"));
203 if (!fBadPixels)
204 {
205 *fLog << err << AddSerialNumber("MBadPixelsCam") << " not found ... aborting" << endl;
206 return kFALSE;
207 }
208
209 fSignals = 0;
210 fCerPhotEvt = 0;
211 if (fCalibrationMode>kSkip)
212 {
213 fSignals = (MExtractedSignalCam*)pList->FindObject(AddSerialNumber("MExtractedSignalCam"));
214 if (!fSignals)
215 {
216 *fLog << err << AddSerialNumber("MExtractedSignalCam") << " not found ... aborting" << endl;
217 return kFALSE;
218 }
219
220 fCerPhotEvt = (MSignalCam*)pList->FindCreateObj(AddSerialNumber("MSignalCam"));
221 if (!fCerPhotEvt)
222 return kFALSE;
223
224 fCalibConstCam = (MCalibConstCam*)pList->FindCreateObj(AddSerialNumber("MCalibConstCam"));
225 if (!fCalibConstCam)
226 return kFALSE;
227 }
228
229 fCalibrations = 0;
230 fQEs = 0;
231 if (fCalibrationMode>kNone)
232 {
233 fCalibrations = (MCalibrationChargeCam*)pList->FindObject(AddSerialNumber("MCalibrationChargeCam"));
234 if (!fCalibrations)
235 {
236 *fLog << err << AddSerialNumber("MCalibrationChargeCam") << " not found ... aborting." << endl;
237 return kFALSE;
238 }
239
240 fQEs = (MCalibrationQECam*)pList->FindObject(AddSerialNumber("MCalibrationQECam"));
241 if (!fQEs)
242 {
243 *fLog << err << AddSerialNumber("MCalibrationQECam") << " not found ... aborting." << endl;
244 return kFALSE;
245 }
246
247 }
248
249 if (fNamesPedestal.GetSize()>0 && fPedestalFlag==kNo)
250 {
251 *fLog << warn << "Pedestal list contains entries, but mode is set to kNo... setting to kEvent." << endl;
252 fPedestalFlag = kEvent;
253 }
254
255 if (fPedestalFlag!=kNo)
256 {
257 if (fNamesPedestal.GetSize()==0)
258 {
259 *fLog << inf << "No container names specified... using default: MPedestalCam and MPedPhotCam." << endl;
260 AddPedestal();
261 }
262
263 fPedestalCams.Clear();
264 fPedPhotCams.Clear();
265
266 TIter Next(&fNamesPedestal);
267 TObject *o=0;
268 while ((o=Next()))
269 {
270 TObject *pedcam = pList->FindObject(AddSerialNumber(o->GetName()), "MPedestalCam");
271 if (!pedcam)
272 {
273 *fLog << err << AddSerialNumber(o->GetName()) << " [MPedestalCam] not found ... aborting" << endl;
274 return kFALSE;
275 }
276 TObject *pedphot = pList->FindCreateObj("MPedPhotCam", AddSerialNumber(o->GetTitle()));
277 if (!pedphot)
278 return kFALSE;
279
280 fPedestalCams.Add(pedcam);
281 fPedPhotCams.Add(pedphot);
282 }
283 }
284
285 switch (fSignalType)
286 {
287 case kPhe:
288 fRenormFactor = MCalibrationQEPix::gkDefaultAverageQE;
289 break;
290 case kPhot:
291 fRenormFactor = 1.;
292 break;
293 }
294
295 fCalibConsts.Reset();
296 fCalibFFactors.Reset();
297 fHiLoConv.Reset();
298 fHiLoConvErr.Reset();
299
300 return kTRUE;
301}
302
303// --------------------------------------------------------------------------
304//
305// The ReInit searches for the following input containers:
306//
307// - MGeomCam
308//
309// Check for validity of the selected calibration method, switch to a
310// different one in case of need
311//
312// Fill the MPedPhotCam container using the information from MPedestalCam,
313// MExtractedSignalCam and MCalibrationCam
314//
315Bool_t MCalibrateData::ReInit(MParList *pList)
316{
317 fGeomCam = (MGeomCam*)pList->FindObject(AddSerialNumber("MGeomCam"));
318 if (!fGeomCam)
319 {
320 *fLog << err << "No MGeomCam found... aborting." << endl;
321 return kFALSE;
322 }
323
324 // Sizes might have changed
325 if (fPedestalFlag!=kNo)
326 {
327 TIter Next(&fPedestalCams);
328 MPedestalCam *cam=0;
329 while ((cam=(MPedestalCam*)Next()))
330 if ((Int_t)cam->GetSize() != fSignals->GetSize())
331 {
332 *fLog << err << "Size mismatch of " << cam->GetDescriptor() << " and MCalibrationCam... abort." << endl;
333 return kFALSE;
334 }
335 }
336
337 if(fCalibrationMode == kBlindPixel && !fQEs->IsBlindPixelMethodValid())
338 {
339 *fLog << warn << "Blind pixel calibration method not valid, switching to F-factor method" << endl;
340 fCalibrationMode = kFfactor;
341 }
342
343 if(fCalibrationMode == kPinDiode && !fQEs->IsPINDiodeMethodValid())
344 {
345 *fLog << warn << "PIN diode calibration method not valid, switching to F-factor method" << endl;
346 fCalibrationMode = kFfactor;
347 }
348
349 if(fCalibrationMode == kCombined && !fQEs->IsCombinedMethodValid())
350 {
351 *fLog << warn << "Combined calibration method not valid, switching to F-factor method" << endl;
352 fCalibrationMode = kFfactor;
353 }
354
355 //
356 // output information or warnings:
357 //
358 switch(fCalibrationMode)
359 {
360 case kBlindPixel:
361 break;
362 case kFfactor:
363 break;
364 case kPinDiode:
365 *fLog << err << "PIN Diode Calibration mode not yet available!" << endl;
366 return kFALSE;
367 break;
368 case kCombined:
369 *fLog << err << "Combined Calibration mode not yet available!" << endl;
370 return kFALSE;
371 break;
372 case kFlatCharge:
373 *fLog << warn << "WARNING - Flat-fielding charges - only for muon calibration!" << endl;
374 break;
375 case kDummy:
376 *fLog << warn << "WARNING - Dummy calibration, no calibration applied!" << endl;
377 break;
378 case kNone:
379 *fLog << warn << "WARNING - No calibration applied!" << endl;
380 break;
381 default:
382 *fLog << warn << "WARNING - Calibration mode value (" << fCalibrationMode << ") not known" << endl;
383 return kFALSE;
384 }
385
386 //
387 // output information or warnings:
388 //
389 switch(fSignalType)
390 {
391 case kPhe:
392 *fLog << inf << "Calibrating in units of equivalent (outer/inner=4) photo-electrons." << endl;
393 break;
394 case kPhot:
395 *fLog << inf << "Calibrating in units of photons." << endl;
396 break;
397 }
398
399 const Int_t npixels = fGeomCam->GetNumPixels();
400
401 if (fCalibrationMode > kNone)
402 {
403
404 if (fCalibrations->GetSize() != npixels)
405 {
406 *fLog << "Size mismatch between MGeomCam and MCalibrationChargeCam... abort!" << endl;
407 return kFALSE;
408 }
409
410 if (fBadPixels->GetSize() != npixels)
411 {
412 *fLog << "Size mismatch between MGeomCam and MBadPixelsCam... abort!" << endl;
413 return kFALSE;
414 }
415 }
416
417 fCalibConsts .Set(npixels);
418 fCalibFFactors.Set(npixels);
419 fHiLoConv .Set(npixels);
420 fHiLoConvErr .Set(npixels);
421
422 if (!UpdateConversionFactors())
423 return kFALSE;
424
425 if (TestPedestalFlag(kRun))
426 Calibrate(kFALSE, kTRUE);
427
428 return kTRUE;
429}
430
431// --------------------------------------------------------------------------
432//
433// Update the conversion factors and F-Factors from MCalibrationCams into
434// the arrays. Later, the here pre-calcualted conversion factors get simply
435// copied from memory.
436//
437// This function can be called from outside in case that the MCalibrationCams
438// have been updated...
439//
440Bool_t MCalibrateData::UpdateConversionFactors( const MCalibrationChargeCam *updatecam)
441{
442
443 *fLog << inf << GetDescriptor()
444 << ": Updating Conversion Factors... " << endl;
445
446 fCalibConsts.Reset();
447 fCalibFFactors.Reset();
448 fHiLoConv.Reset();
449 fHiLoConvErr.Reset();
450
451 //
452 // For the moment, we use only a dummy zenith for the calibration:
453 //
454 const Float_t zenith = -1.;
455
456 UInt_t skip = 0;
457
458 for (UInt_t pixidx=0; pixidx<fGeomCam->GetNumPixels(); pixidx++)
459 {
460
461 Float_t hiloconv = 1.;
462 Float_t hiloconverr = 0.;
463 Float_t calibConv = 1.;
464 Float_t calibConvVar = 0.;
465 Float_t calibFFactor = 0.;
466
467 Float_t calibQE = 1.;
468 Float_t calibQEVar = 0.;
469
470 Float_t calibUpdate = 1.;
471
472 MCalibConstPix &cpix = (*fCalibConstCam)[pixidx];
473
474 if(fCalibrationMode!=kNone)
475 {
476 if ((*fBadPixels)[pixidx].IsUnsuitable(MBadPixelsPix::kUnsuitableRun))
477 {
478 skip++;
479 calibConv = -1.;
480 continue;
481 }
482
483 MCalibrationChargePix &pix = (MCalibrationChargePix&)(*fCalibrations)[pixidx];
484 MCalibrationChargePix &avpix = (MCalibrationChargePix&)fCalibrations->GetAverageArea(0);
485
486 hiloconv = pix.GetConversionHiLo ();
487 hiloconverr= pix.GetConversionHiLoErr();
488
489 calibConv = pix.GetMeanConvFADC2Phe();
490 calibConvVar = pix.GetMeanConvFADC2PheVar();
491 calibFFactor = pix.GetMeanFFactorFADC2Phot();
492
493 MCalibrationQEPix &qe = (MCalibrationQEPix&) (*fQEs)[pixidx];
494
495 if (updatecam)
496 {
497 MCalibrationChargePix &upix = (MCalibrationChargePix&)(*updatecam)[pixidx];
498 //
499 // Correct for the possible change in amplification of the individual pixels chain
500 //
501 const Float_t pixmean = upix.GetConvertedMean();
502 calibUpdate = (pixmean == 0.) ? 1. : pix.GetConvertedMean() / pixmean;
503 //
504 // Correct for global shifts in light emission
505 //
506 MCalibrationChargePix &ugpix = (MCalibrationChargePix&)updatecam->GetAverageArea(0);
507
508 const Float_t globmean = avpix.GetConvertedMean();
509 calibUpdate = (globmean == 0.) ? 1. : ugpix.GetConvertedMean() / globmean;
510
511 MBadPixelsPix &ubad = (MBadPixelsPix&) updatecam->GetAverageBadArea(0);
512 if (ubad.IsUncalibrated(MBadPixelsPix::kChargeIsPedestal))
513 {
514 *fLog << warn << GetDescriptor() << ": Mean charge in inner pixels is smaller than 3 ped. RMS." << endl;
515 *fLog << "Maybe calibration pulses have been lost!" << endl;
516 calibUpdate = 1.;
517
518 }
519 }
520
521 switch(fCalibrationMode)
522 {
523 case kFlatCharge:
524 {
525 calibConv = avpix.GetConvertedMean()
526 / (pix.GetConvertedMean() * fGeomCam->GetPixRatio(pixidx));
527 calibConvVar = (avpix.GetMeanRelVar() + pix.GetMeanRelVar()) * calibConv * calibConv;
528 if (pix.IsFFactorMethodValid())
529 {
530 const Float_t convmin1 = qe.GetQECascadesFFactor(zenith)/pix.GetMeanConvFADC2Phe();
531 if (convmin1 > 0)
532 calibFFactor *= TMath::Sqrt(convmin1);
533 else
534 calibFFactor = -1.;
535 }
536 break;
537 }
538 case kBlindPixel:
539 if (!qe.IsBlindPixelMethodValid())
540 {
541 skip++;
542 continue;
543 }
544 calibQE = qe.GetQECascadesBlindPixel ( zenith );
545 calibQEVar = qe.GetQECascadesBlindPixelVar( zenith );
546 break;
547
548 case kPinDiode:
549 if (!qe.IsPINDiodeMethodValid())
550 {
551 skip++;
552 continue;
553 }
554 calibQE = qe.GetQECascadesPINDiode ( zenith );
555 calibQEVar = qe.GetQECascadesPINDiodeVar( zenith );
556 break;
557
558 case kFfactor:
559 if (!pix.IsFFactorMethodValid())
560 {
561 skip++;
562 continue;
563 }
564 calibQE = qe.GetQECascadesFFactor ( zenith );
565 calibQEVar = qe.GetQECascadesFFactorVar( zenith );
566 break;
567
568 case kCombined:
569 if (!qe.IsCombinedMethodValid())
570 {
571 skip++;
572 continue;
573 }
574 calibQE = qe.GetQECascadesCombined ( zenith );
575 calibQEVar = qe.GetQECascadesCombinedVar( zenith );
576 break;
577
578 case kDummy:
579 hiloconv = 1.;
580 hiloconverr = 0.;
581 calibUpdate = 1.;
582 break;
583 } /* switch calibration mode */
584 } /* if(fCalibrationMode!=kNone) */
585 else
586 {
587 calibConv = 1./fGeomCam->GetPixRatio(pixidx);
588 }
589
590 calibConv /= calibQE;
591
592 if (calibConv != 0. && calibQE != 0.)
593 {
594 calibConvVar = calibConvVar/(calibConv*calibConv) + calibQEVar/(calibQE*calibQE);
595 calibConvVar *= (calibConv*calibConv);
596 }
597
598 calibConv *= fRenormFactor * calibUpdate;
599 calibFFactor *= TMath::Sqrt(fRenormFactor);
600
601 fHiLoConv [pixidx] = hiloconv;
602 fHiLoConvErr [pixidx] = hiloconverr;
603 fCalibConsts [pixidx] = calibConv;
604 fCalibFFactors[pixidx] = calibFFactor;
605
606 if (calibConv < fCalibConvMinLimit || calibConv > fCalibConvMaxLimit)
607 {
608 (*fBadPixels)[pixidx].SetUnsuitable(MBadPixelsPix::kUnsuitableRun);
609 calibConv = -1.;
610 calibFFactor = -1.;
611 }
612 cpix.SetCalibConst(calibConv);
613 cpix.SetCalibFFactor(calibFFactor);
614
615 } /* for (Int_t pixidx=0; pixidx<fGeomCam->GetNumPixels(); pixidx++) */
616
617 if (skip>fGeomCam->GetNumPixels()*0.9)
618 {
619 *fLog << warn << GetDescriptor()
620 << ": WARNING - GetConversionFactor has skipped more than 90% of the pixels... abort." << endl;
621 return kFALSE;
622 }
623
624 return kTRUE;
625}
626
627
628// --------------------------------------------------------------------------
629//
630// Apply the conversion factors and F-Factors from the arrays to the data.
631//
632// The flags 'data' and 'pedestal' decide whether the signal and/or the pedetals
633// shall be calibrated, respectively.
634//
635Int_t MCalibrateData::Calibrate(Bool_t data, Bool_t pedestal) const
636{
637 if (!data && !pedestal)
638 return kTRUE;
639
640 const UInt_t npix = fSignals->GetSize();
641 const Float_t slices = fSignals->GetNumUsedHiGainFADCSlices();
642 const Float_t sqrtslices = TMath::Sqrt(slices);
643
644 Int_t numsatlo=0;
645 Int_t numsathi=0;
646
647 for (UInt_t pixidx=0; pixidx<npix; pixidx++)
648 {
649
650 if (data)
651 {
652 const MExtractedSignalPix &sig = (*fSignals)[pixidx];
653
654 Float_t signal = 0.;
655 Float_t signalErr = 0.;
656
657 if (sig.IsLoGainUsed())
658 {
659 if (fHiLoConv[pixidx] < 0.5)
660 {
661 signal = sig.GetExtractedSignalHiGain()*1.5;
662 signalErr = sig.GetExtractedSignalHiGain()*0.5;
663 }
664 else
665 {
666 const Float_t siglo = sig.GetExtractedSignalLoGain();
667
668 if (siglo > 0.1) // low-gain signal has been extracted successfully
669 {
670 signal = siglo*fHiLoConv [pixidx];
671 signalErr = siglo*fHiLoConvErr[pixidx];
672 }
673 else // low-gain signal has not been extracted successfully, get a rough estimate from the high-gain
674 {
675 signal = sig.GetExtractedSignalHiGain()*1.5;
676 signalErr = sig.GetExtractedSignalHiGain()*0.5;
677 }
678 }
679 }
680 else
681 {
682 if (sig.GetExtractedSignalHiGain() <= 9999.)
683 signal = sig.GetExtractedSignalHiGain();
684 }
685
686 const Float_t nphot = signal * fCalibConsts [pixidx];
687 const Float_t nphotErr = TMath::Sqrt(TMath::Abs(nphot)) * fCalibFFactors[pixidx];
688
689 fCerPhotEvt->AddPixel(pixidx, nphot, nphotErr);
690
691 if (sig.GetNumHiGainSaturated() > 0)
692 numsathi++;
693
694 if (sig.GetNumLoGainSaturated() > 0)
695 numsatlo++;
696 } /* if (data) */
697
698
699 if (pedestal)
700 {
701 TIter NextPed(&fPedestalCams);
702 TIter NextPhot(&fPedPhotCams);
703
704 MPedestalCam *pedestal = 0;
705 MPedPhotCam *pedphot = 0;
706
707 const Float_t pedmeancalib = slices *fCalibConsts[pixidx];
708 const Float_t pedrmscalib = sqrtslices*fCalibConsts[pixidx];
709
710 while ((pedestal=(MPedestalCam*)NextPed()) &&
711 (pedphot =(MPedPhotCam*)NextPhot()))
712 {
713 // pedestals/(used FADC slices) in [number of photons]
714 const Float_t mean = (*pedestal)[pixidx].GetPedestal() *pedmeancalib;
715 const Float_t rms = (*pedestal)[pixidx].GetPedestalRms()*pedrmscalib;
716
717 (*pedphot)[pixidx].Set(mean, rms);
718 pedphot->SetReadyToSave();
719 }
720 } /* if (pedestal) */
721 }
722
723 if (data)
724 {
725 fCerPhotEvt->SetNumPixelsSaturated(numsathi, numsatlo);
726 fCerPhotEvt->SetReadyToSave();
727 }
728 return kTRUE;
729}
730
731// --------------------------------------------------------------------------
732//
733// Apply the calibration factors to the extracted signal according to the
734// selected calibration method
735//
736Int_t MCalibrateData::Process()
737{
738 return Calibrate(fCalibrationMode!=kSkip, TestPedestalFlag(kEvent));
739}
740
741// --------------------------------------------------------------------------
742//
743// Implementation of SavePrimitive. Used to write the call to a constructor
744// to a macro. In the original root implementation it is used to write
745// gui elements to a macro-file.
746//
747void MCalibrateData::StreamPrimitive(ofstream &out) const
748{
749 out << " " << ClassName() << " " << GetUniqueName() << "(\"";
750 out << "\"" << fName << "\", \"" << fTitle << "\");" << endl;
751
752 if (TestPedestalFlag(kEvent))
753 out << " " << GetUniqueName() << ".EnablePedestalType(MCalibrateData::kEvent)" << endl;
754 if (TestPedestalFlag(kRun))
755 out << " " << GetUniqueName() << ".EnablePedestalType(MCalibrateData::kRun)" << endl;
756
757 if (fCalibrationMode != kDefault)
758 {
759 out << " " << GetUniqueName() << ".SetCalibrationMode(MCalibrateData::";
760 switch (fCalibrationMode)
761 {
762 case kSkip: out << "kSkip"; break;
763 case kNone: out << "kNone"; break;
764 case kFlatCharge: out << "kFlatCharge"; break;
765 case kBlindPixel: out << "kBlindPixel"; break;
766 case kFfactor: out << "kFfactor"; break;
767 case kPinDiode: out << "kPinDiode"; break;
768 case kCombined: out << "kCombined"; break;
769 case kDummy: out << "kDummy"; break;
770 default: out << (int)fCalibrationMode; break;
771 }
772 out << ")" << endl;
773 }
774
775 TIter Next(&fNamesPedestal);
776 TObject *o=0;
777 while ((o=Next()))
778 {
779 out << " " << GetUniqueName() << ".AddPedestal(\"";
780 out << o->GetName() << "\", \"" << o->GetTitle() << "\");" << endl;
781 }
782}
783
784// --------------------------------------------------------------------------
785//
786// Read the setup from a TEnv, eg:
787// MJPedestal.MCalibrateDate.PedestalFlag: no,run,event
788// MJPedestal.MCalibrateDate.CalibrationMode: skip,none,flatcharge,blindpixel,ffactor,pindiode,combined,dummy,default
789//
790Int_t MCalibrateData::ReadEnv(const TEnv &env, TString prefix, Bool_t print)
791{
792 Bool_t rc = kFALSE;
793 if (IsEnvDefined(env, prefix, "PedestalFlag", print))
794 {
795 rc = kTRUE;
796 TString s = GetEnvValue(env, prefix, "PedestalFlag", "");
797 s.ToLower();
798 if (s.BeginsWith("no"))
799 SetPedestalFlag(kNo);
800 if (s.BeginsWith("run"))
801 SetPedestalFlag(kRun);
802 if (s.BeginsWith("event"))
803 SetPedestalFlag(kEvent);
804 }
805
806 if (IsEnvDefined(env, prefix, "CalibrationMode", print))
807 {
808 rc = kTRUE;
809 TString s = GetEnvValue(env, prefix, "CalibrationMode", "");
810 s.ToLower();
811 if (s.BeginsWith("skip"))
812 SetCalibrationMode(kSkip);
813 if (s.BeginsWith("none"))
814 SetCalibrationMode(kNone);
815 if (s.BeginsWith("flatcharge"))
816 SetCalibrationMode(kFlatCharge);
817 if (s.BeginsWith("blindpixel"))
818 SetCalibrationMode(kBlindPixel);
819 if (s.BeginsWith("ffactor"))
820 SetCalibrationMode(kFfactor);
821 if (s.BeginsWith("pindiode"))
822 SetCalibrationMode(kPinDiode);
823 if (s.BeginsWith("combined"))
824 SetCalibrationMode(kCombined);
825 if (s.BeginsWith("dummy"))
826 SetCalibrationMode(kDummy);
827 if (s.BeginsWith("default"))
828 SetCalibrationMode();
829 }
830
831 if (IsEnvDefined(env, prefix, "SignalType", print))
832 {
833 rc = kTRUE;
834 TString s = GetEnvValue(env, prefix, "SignalType", "");
835 s.ToLower();
836 if (s.BeginsWith("phot"))
837 SetSignalType(kPhot);
838 if (s.BeginsWith("phe"))
839 SetSignalType(kPhe);
840 if (s.BeginsWith("default"))
841 SetSignalType();
842 }
843
844 if (IsEnvDefined(env, prefix, "CalibConvMinLimit", print))
845 {
846 fCalibConvMinLimit = GetEnvValue(env, prefix, "CalibConvMinLimit", fCalibConvMinLimit);
847 rc = kTRUE;
848 }
849
850 if (IsEnvDefined(env, prefix, "CalibConvMaxLimit", print))
851 {
852 fCalibConvMaxLimit = GetEnvValue(env, prefix, "CalibConvMaxLimit", fCalibConvMaxLimit);
853 rc = kTRUE;
854 }
855
856 return rc;
857}
858
859void MCalibrateData::Print(Option_t *o) const
860{
861
862 *fLog << all << GetDescriptor() << ":" << endl;
863
864 for (UInt_t pixidx=0; pixidx<fGeomCam->GetNumPixels(); pixidx++)
865 {
866 *fLog << all
867 << Form("%s%3i","Pixel: ",pixidx)
868 << Form("%s%4.2f"," CalibConst: ",fCalibConsts[pixidx])
869 << Form("%s%4.2f"," F-Factor: ",fCalibFFactors[pixidx])
870 << Form("%s%4.2f"," HiLoConv: ",fHiLoConv[pixidx])
871 << endl;
872 }
873}
874
Note: See TracBrowser for help on using the repository browser.