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

Last change on this file since 6994 was 6932, checked in by tbretz, 20 years ago
*** empty log message ***
File size: 28.7 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)
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)
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 if (fBadPixels->GetSize() != npixels)
417 {
418 *fLog << "Size mismatch between MGeomCam and MBadPixelsCam... abort!" << endl;
419 return kFALSE;
420 }
421 }
422
423 fCalibConsts .Set(npixels);
424 fCalibFFactors.Set(npixels);
425 fHiLoConv .Set(npixels);
426 fHiLoConvErr .Set(npixels);
427
428 if (!UpdateConversionFactors())
429 return kFALSE;
430
431 if (TestPedestalFlag(kRun))
432 Calibrate(kFALSE, kTRUE);
433
434 return kTRUE;
435}
436
437// --------------------------------------------------------------------------
438//
439// Update the conversion factors and F-Factors from MCalibrationCams into
440// the arrays. Later, the here pre-calcualted conversion factors get simply
441// copied from memory.
442//
443// This function can be called from outside in case that the MCalibrationCams
444// have been updated...
445//
446Bool_t MCalibrateData::UpdateConversionFactors( const MCalibrationChargeCam *updatecam)
447{
448
449 *fLog << inf << GetDescriptor()
450 << ": Updating Conversion Factors... " << endl;
451
452 fCalibConsts.Reset();
453 fCalibFFactors.Reset();
454 fHiLoConv.Reset();
455 fHiLoConvErr.Reset();
456
457 //
458 // For the moment, we use only a dummy zenith for the calibration:
459 //
460 const Float_t zenith = -1.;
461
462 UInt_t skip = 0;
463
464 for (UInt_t pixidx=0; pixidx<fGeomCam->GetNumPixels(); pixidx++)
465 {
466
467 Float_t hiloconv = 1.;
468 Float_t hiloconverr = 0.;
469 Float_t calibConv = 1.;
470 Float_t calibConvVar = 0.;
471 Float_t calibFFactor = 0.;
472
473 Float_t calibQE = 1.;
474 Float_t calibQEVar = 0.;
475
476 Float_t calibUpdate = 1.;
477
478 MCalibConstPix &cpix = (*fCalibConstCam)[pixidx];
479
480 if(fCalibrationMode!=kNone)
481 {
482 if ((*fBadPixels)[pixidx].IsUnsuitable(MBadPixelsPix::kUnsuitableRun))
483 {
484 skip++;
485 calibConv = -1.;
486 continue;
487 }
488
489 MCalibrationChargePix &pix = (MCalibrationChargePix&)(*fCalibrations)[pixidx];
490 MCalibrationChargePix &avpix = (MCalibrationChargePix&)fCalibrations->GetAverageArea(0);
491
492 hiloconv = pix.GetConversionHiLo ();
493 hiloconverr= pix.GetConversionHiLoErr();
494
495 calibConv = pix.GetMeanConvFADC2Phe();
496 calibConvVar = pix.GetMeanConvFADC2PheVar();
497 calibFFactor = pix.GetMeanFFactorFADC2Phot();
498
499 MCalibrationQEPix &qe = (MCalibrationQEPix&) (*fQEs)[pixidx];
500
501 if (updatecam)
502 {
503 MCalibrationChargePix &upix = (MCalibrationChargePix&)(*updatecam)[pixidx];
504 //
505 // Correct for the possible change in amplification of the individual pixels chain
506 //
507 const Float_t pixmean = upix.GetConvertedMean();
508 calibUpdate = (pixmean == 0.) ? 1. : pix.GetConvertedMean() / pixmean;
509 //
510 // Correct for global shifts in light emission
511 //
512 MCalibrationChargePix &ugpix = (MCalibrationChargePix&)updatecam->GetAverageArea(0);
513
514 const Float_t globmean = avpix.GetConvertedMean();
515 calibUpdate = (globmean == 0.) ? 1. : ugpix.GetConvertedMean() / globmean;
516
517 MBadPixelsPix &ubad = (MBadPixelsPix&) updatecam->GetAverageBadArea(0);
518 if (ubad.IsUncalibrated(MBadPixelsPix::kChargeIsPedestal))
519 {
520 *fLog << warn << GetDescriptor() << ": Mean charge in inner pixels is smaller than 3 ped. RMS." << endl;
521 *fLog << "Maybe calibration pulses have been lost!" << endl;
522 calibUpdate = 1.;
523
524 }
525 }
526
527 switch(fCalibrationMode)
528 {
529 case kFlatCharge:
530 {
531 calibConv = avpix.GetConvertedMean()
532 / (pix.GetConvertedMean() * fGeomCam->GetPixRatio(pixidx));
533 calibConvVar = (avpix.GetMeanRelVar() + pix.GetMeanRelVar()) * calibConv * calibConv;
534 if (pix.IsFFactorMethodValid())
535 {
536 const Float_t convmin1 = qe.GetQECascadesFFactor(zenith)/pix.GetMeanConvFADC2Phe();
537 if (convmin1 > 0)
538 calibFFactor *= TMath::Sqrt(convmin1);
539 else
540 calibFFactor = -1.;
541 }
542 break;
543 }
544 case kBlindPixel:
545 if (!qe.IsBlindPixelMethodValid())
546 {
547 skip++;
548 continue;
549 }
550 calibQE = qe.GetQECascadesBlindPixel ( zenith );
551 calibQEVar = qe.GetQECascadesBlindPixelVar( zenith );
552 break;
553
554 case kPinDiode:
555 if (!qe.IsPINDiodeMethodValid())
556 {
557 skip++;
558 continue;
559 }
560 calibQE = qe.GetQECascadesPINDiode ( zenith );
561 calibQEVar = qe.GetQECascadesPINDiodeVar( zenith );
562 break;
563
564 case kFfactor:
565 if (!pix.IsFFactorMethodValid())
566 {
567 skip++;
568 continue;
569 }
570 calibQE = qe.GetQECascadesFFactor ( zenith );
571 calibQEVar = qe.GetQECascadesFFactorVar( zenith );
572 break;
573
574 case kCombined:
575 if (!qe.IsCombinedMethodValid())
576 {
577 skip++;
578 continue;
579 }
580 calibQE = qe.GetQECascadesCombined ( zenith );
581 calibQEVar = qe.GetQECascadesCombinedVar( zenith );
582 break;
583
584 case kDummy:
585 hiloconv = 1.;
586 hiloconverr = 0.;
587 calibUpdate = 1.;
588 break;
589 } /* switch calibration mode */
590 } /* if(fCalibrationMode!=kNone) */
591 else
592 {
593 calibConv = 1./fGeomCam->GetPixRatio(pixidx);
594 }
595
596 calibConv /= calibQE;
597
598 if (calibConv != 0. && calibQE != 0.)
599 {
600 // Now doing:
601 calibConvVar = calibConvVar/(calibConv*calibConv) + calibQEVar/(calibQE*calibQE);
602 calibConvVar *= (calibConv*calibConv);
603 // The above two lines had been commented by TB and replaced by the following line
604 // (without notice to me!) but it is simply wrong!
605 // calibConvVar += calibQEVar*(calibConv*calibConv)/(calibQE*calibQE);
606 }
607
608 calibConv *= fRenormFactor * calibUpdate;
609 calibFFactor *= TMath::Sqrt(fRenormFactor);
610
611 fHiLoConv [pixidx] = hiloconv;
612 fHiLoConvErr [pixidx] = hiloconverr;
613 fCalibConsts [pixidx] = calibConv;
614 fCalibFFactors[pixidx] = calibFFactor;
615
616 if (calibConv < fCalibConvMinLimit || calibConv > fCalibConvMaxLimit)
617 {
618 (*fBadPixels)[pixidx].SetUnsuitable(MBadPixelsPix::kUnsuitableRun);
619 calibConv = -1.;
620 calibFFactor = -1.;
621 }
622 cpix.SetCalibConst(calibConv);
623 cpix.SetCalibFFactor(calibFFactor);
624
625 } /* for (Int_t pixidx=0; pixidx<fGeomCam->GetNumPixels(); pixidx++) */
626
627 if (skip>fGeomCam->GetNumPixels()*0.9)
628 {
629 *fLog << warn << GetDescriptor()
630 << ": WARNING - GetConversionFactor has skipped more than 90% of the pixels... abort." << endl;
631 return kFALSE;
632 }
633
634
635
636 // Print();
637
638 return kTRUE;
639}
640
641
642// --------------------------------------------------------------------------
643//
644// Apply the conversion factors and F-Factors from the arrays to the data.
645//
646// The flags 'data' and 'pedestal' decide whether the signal and/or the pedetals
647// shall be calibrated, respectively.
648//
649Int_t MCalibrateData::Calibrate(Bool_t data, Bool_t pedestal) const
650{
651 if (!data && !pedestal)
652 return kTRUE;
653
654 const UInt_t npix = fSignals->GetSize();
655 const Float_t slices = fSignals->GetNumUsedHiGainFADCSlices();
656 const Float_t sqrtslices = TMath::Sqrt(slices);
657
658 Int_t numsatlo=0;
659 Int_t numsathi=0;
660
661 for (UInt_t pixidx=0; pixidx<npix; pixidx++)
662 {
663
664 if (data)
665 {
666 const MExtractedSignalPix &sig = (*fSignals)[pixidx];
667
668 Float_t signal = 0.;
669 Float_t signalErr = 0.;
670
671 if (sig.IsLoGainUsed())
672 {
673 if (fHiLoConv[pixidx] < 0.5)
674 {
675 signal = sig.GetExtractedSignalHiGain()*1.5;
676 signalErr = sig.GetExtractedSignalHiGain()*0.5;
677 }
678 else
679 {
680 const Float_t siglo = sig.GetExtractedSignalLoGain();
681
682 if (siglo > 0.1) // low-gain signal has been extracted successfully
683 {
684 signal = siglo*fHiLoConv [pixidx];
685 signalErr = siglo*fHiLoConvErr[pixidx];
686 }
687 else // low-gain signal has not been extracted successfully, get a rough estimate from the high-gain
688 {
689 signal = sig.GetExtractedSignalHiGain()*1.5;
690 signalErr = sig.GetExtractedSignalHiGain()*0.5;
691 }
692 }
693 }
694 else
695 {
696 if (sig.GetExtractedSignalHiGain() <= 9999.)
697 signal = sig.GetExtractedSignalHiGain();
698 }
699
700 const Float_t nphot = signal * fCalibConsts [pixidx];
701 const Float_t nphotErr = TMath::Sqrt(TMath::Abs(nphot)) * fCalibFFactors[pixidx];
702
703 fCerPhotEvt->AddPixel(pixidx, nphot, nphotErr);
704
705 if (sig.GetNumHiGainSaturated() > 0)
706 numsathi++;
707
708 if (sig.GetNumLoGainSaturated() > 0)
709 numsatlo++;
710 } /* if (data) */
711
712
713 if (pedestal)
714 {
715 TIter NextPed(&fPedestalCams);
716 TIter NextPhot(&fPedPhotCams);
717
718 MPedestalCam *pedestal = 0;
719 MPedPhotCam *pedphot = 0;
720
721 const Float_t pedmeancalib = slices *fCalibConsts[pixidx];
722 const Float_t pedrmscalib = sqrtslices*fCalibConsts[pixidx];
723
724 while ((pedestal=(MPedestalCam*)NextPed()) &&
725 (pedphot =(MPedPhotCam*)NextPhot()))
726 {
727 // pedestals/(used FADC slices) in [number of photons]
728 const Float_t mean = (*pedestal)[pixidx].GetPedestal() *pedmeancalib;
729 const Float_t rms = (*pedestal)[pixidx].GetPedestalRms()*pedrmscalib;
730
731 (*pedphot)[pixidx].Set(mean, rms);
732 pedphot->SetReadyToSave();
733 }
734 } /* if (pedestal) */
735 }
736
737 if (data)
738 {
739 fCerPhotEvt->SetNumPixelsSaturated(numsathi, numsatlo);
740 fCerPhotEvt->SetReadyToSave();
741 }
742 return kTRUE;
743}
744
745// --------------------------------------------------------------------------
746//
747// Apply the calibration factors to the extracted signal according to the
748// selected calibration method
749//
750Int_t MCalibrateData::Process()
751{
752 return Calibrate(fCalibrationMode!=kSkip, TestPedestalFlag(kEvent));
753}
754
755// --------------------------------------------------------------------------
756//
757// Implementation of SavePrimitive. Used to write the call to a constructor
758// to a macro. In the original root implementation it is used to write
759// gui elements to a macro-file.
760//
761void MCalibrateData::StreamPrimitive(ofstream &out) const
762{
763 out << " " << ClassName() << " " << GetUniqueName() << "(\"";
764 out << "\"" << fName << "\", \"" << fTitle << "\");" << endl;
765
766 if (TestPedestalFlag(kEvent))
767 out << " " << GetUniqueName() << ".EnablePedestalType(MCalibrateData::kEvent)" << endl;
768 if (TestPedestalFlag(kRun))
769 out << " " << GetUniqueName() << ".EnablePedestalType(MCalibrateData::kRun)" << endl;
770
771 if (fCalibrationMode != kDefault)
772 {
773 out << " " << GetUniqueName() << ".SetCalibrationMode(MCalibrateData::";
774 switch (fCalibrationMode)
775 {
776 case kSkip: out << "kSkip"; break;
777 case kNone: out << "kNone"; break;
778 case kFlatCharge: out << "kFlatCharge"; break;
779 case kBlindPixel: out << "kBlindPixel"; break;
780 case kFfactor: out << "kFfactor"; break;
781 case kPinDiode: out << "kPinDiode"; break;
782 case kCombined: out << "kCombined"; break;
783 case kDummy: out << "kDummy"; break;
784 default: out << (int)fCalibrationMode; break;
785 }
786 out << ")" << endl;
787 }
788
789 TIter Next(&fNamesPedestal);
790 TObject *o=0;
791 while ((o=Next()))
792 {
793 out << " " << GetUniqueName() << ".AddPedestal(\"";
794 out << o->GetName() << "\", \"" << o->GetTitle() << "\");" << endl;
795 }
796}
797
798// --------------------------------------------------------------------------
799//
800// Read the setup from a TEnv, eg:
801// MJPedestal.MCalibrateDate.PedestalFlag: no,run,event
802// MJPedestal.MCalibrateDate.CalibrationMode: skip,none,flatcharge,blindpixel,ffactor,pindiode,combined,dummy,default
803//
804Int_t MCalibrateData::ReadEnv(const TEnv &env, TString prefix, Bool_t print)
805{
806 Bool_t rc = kFALSE;
807 if (IsEnvDefined(env, prefix, "PedestalFlag", print))
808 {
809 rc = kTRUE;
810 TString s = GetEnvValue(env, prefix, "PedestalFlag", "");
811 s.ToLower();
812 if (s.BeginsWith("no"))
813 SetPedestalFlag(kNo);
814 if (s.BeginsWith("run"))
815 SetPedestalFlag(kRun);
816 if (s.BeginsWith("event"))
817 SetPedestalFlag(kEvent);
818 }
819
820 if (IsEnvDefined(env, prefix, "CalibrationMode", print))
821 {
822 rc = kTRUE;
823 TString s = GetEnvValue(env, prefix, "CalibrationMode", "");
824 s.ToLower();
825 if (s.BeginsWith("skip"))
826 SetCalibrationMode(kSkip);
827 if (s.BeginsWith("none"))
828 SetCalibrationMode(kNone);
829 if (s.BeginsWith("flatcharge"))
830 SetCalibrationMode(kFlatCharge);
831 if (s.BeginsWith("blindpixel"))
832 SetCalibrationMode(kBlindPixel);
833 if (s.BeginsWith("ffactor"))
834 SetCalibrationMode(kFfactor);
835 if (s.BeginsWith("pindiode"))
836 SetCalibrationMode(kPinDiode);
837 if (s.BeginsWith("combined"))
838 SetCalibrationMode(kCombined);
839 if (s.BeginsWith("dummy"))
840 SetCalibrationMode(kDummy);
841 if (s.BeginsWith("default"))
842 SetCalibrationMode();
843 }
844
845 if (IsEnvDefined(env, prefix, "SignalType", print))
846 {
847 rc = kTRUE;
848 TString s = GetEnvValue(env, prefix, "SignalType", "");
849 s.ToLower();
850 if (s.BeginsWith("phot"))
851 SetSignalType(kPhot);
852 if (s.BeginsWith("phe"))
853 SetSignalType(kPhe);
854 if (s.BeginsWith("default"))
855 SetSignalType();
856 }
857
858 if (IsEnvDefined(env, prefix, "CalibConvMinLimit", print))
859 {
860 fCalibConvMinLimit = GetEnvValue(env, prefix, "CalibConvMinLimit", fCalibConvMinLimit);
861 rc = kTRUE;
862 }
863
864 if (IsEnvDefined(env, prefix, "CalibConvMaxLimit", print))
865 {
866 fCalibConvMaxLimit = GetEnvValue(env, prefix, "CalibConvMaxLimit", fCalibConvMaxLimit);
867 rc = kTRUE;
868 }
869
870 return rc;
871}
872
873void MCalibrateData::Print(Option_t *o) const
874{
875
876 *fLog << all << GetDescriptor() << ":" << endl;
877
878 for (UInt_t pixidx=0; pixidx<fGeomCam->GetNumPixels(); pixidx++)
879 {
880 *fLog << all
881 << Form("%s%3i","Pixel: ",pixidx)
882 << Form("%s%4.2f"," CalibConst: ",fCalibConsts[pixidx])
883 << Form("%s%4.2f"," F-Factor: ",fCalibFFactors[pixidx])
884 << Form("%s%4.2f"," HiLoConv: ",fHiLoConv[pixidx])
885 << endl;
886 }
887}
888
Note: See TracBrowser for help on using the repository browser.