source: trunk/MagicSoft/Mars/mjobs/MJCalibration.cc@ 7071

Last change on this file since 7071 was 7071, checked in by tbretz, 19 years ago
*** empty log message ***
File size: 69.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): Thomas Bretz, 1/2004 <mailto:tbretz@astro.uni-wuerzburg.de>
19! Author(s): Markus Gaug, 02/2004 <mailto:markus@ifae.es>
20!
21! Copyright: MAGIC Software Development, 2000-2005
22!
23!
24\* ======================================================================== */
25
26/////////////////////////////////////////////////////////////////////////////
27//
28// MJCalibration
29//
30// Do one calibration loop over serious of runs with the same pulser
31// colour and the same intensity. The following containers (rectangular) and
32// tasks (ellipses) are called to produce an MCalibrationChargeCam and to
33// update the MCalibrationQECam: (MCalibrate is not called from this class)
34//
35//Begin_Html
36/*
37<img src="images/CalibClasses.gif">
38*/
39//End_Html
40//
41// Different signal extractors can be set with the command SetExtractor()
42// Only extractors deriving from MExtractor can be set, default is MExtractSlidingWindow
43//
44// Different arrival time extractors can be set with the command SetTimeExtractor()
45// Only extractors deriving from MExtractTime can be set, default is MExtractTimeHighestIntegral
46//
47// At the end of the eventloop, plots and results are displayed, depending on
48// the flags set (see DisplayResult())
49//
50// If the flag SetFullDisplay() is set, all MHCameras will be displayed.
51// if the flag SetDataCheckDisplay() is set, only the most important ones are displayed
52// Otherwise, (default: SetNormalDisplay()), a good selection of plots is given
53//
54// The absolute light calibration devices Blind Pixel and PIN Diode can be switched on
55// and off with the commands:
56//
57// - SetUseBlindPixel(Bool_t )
58// - SetUsePINDiode(Bool_t )
59//
60// See also: MHCalibrationChargePix, MHCalibrationChargeCam, MHGausEvents
61// MHCalibrationChargeBlindPix, MHCalibrationChargePINDiode
62// MCalibrationChargePix, MCalibrationChargeCam, MCalibrationChargeCalc
63// MCalibrationBlindPix, MCalibrationChargePINDiode,
64// MCalibrationQECam, MBadPixelsPix, MBadPixelsCam
65//
66// If the flag RelTimeCalibration() is set, a calibration of the relative arrival
67// times is also performed. The following containers (rectangular) and
68// tasks (ellipses) are called to produce an MCalibrationRelTimeCam used by
69// MCalibrateTime to correct timing offset between pixels: (MCalibrateTime is not
70// called from this class)
71//
72//Begin_Html
73/*
74<img src="images/RelTimeClasses.gif">
75*/
76//End_Html
77//
78// Different arrival time extractors can be set directly with the command
79// SetTimeExtractor(MExtractor *)
80//
81// Resource file entries are case sensitive!
82//
83// See also: MHCalibrationRelTimePix, MHCalibrationRelTimeCam, MHGausEvents
84// MCalibrationRelTimePix, MCalibrationRelTimeCam
85// MBadPixelsPix, MBadPixelsCam
86//
87/////////////////////////////////////////////////////////////////////////////
88#include "MJCalibration.h"
89
90#include <TFile.h>
91#include <TF1.h>
92#include <TStyle.h>
93#include <TCanvas.h>
94#include <TSystem.h>
95#include <TLine.h>
96#include <TLatex.h>
97#include <TLegend.h>
98#include <TRegexp.h>
99#include <TPaveText.h>
100#include <TPaveStats.h>
101#include <TEnv.h>
102
103#include "MLog.h"
104#include "MLogManip.h"
105
106#include "MRunIter.h"
107#include "MSequence.h"
108#include "MParList.h"
109#include "MTaskList.h"
110#include "MEvtLoop.h"
111
112#include "MHCamera.h"
113#include "MGeomCam.h"
114
115#include "MPedestalCam.h"
116#include "MCalibColorSteer.h"
117
118#include "MCalibrationIntensityChargeCam.h"
119#include "MCalibrationIntensityBlindCam.h"
120#include "MCalibrationIntensityRelTimeCam.h"
121#include "MCalibrationIntensityQECam.h"
122
123#include "MCalibrationPatternDecode.h"
124#include "MCalibrationCam.h"
125#include "MCalibrationHiLoCam.h"
126#include "MCalibrationHiLoPix.h"
127#include "MCalibrationQECam.h"
128#include "MCalibrationQEPix.h"
129#include "MCalibrationChargeCam.h"
130#include "MCalibrationChargePix.h"
131#include "MCalibrationChargePINDiode.h"
132#include "MCalibrationBlindPix.h"
133#include "MCalibrationBlindCam.h"
134#include "MCalibrationBlindCamOneOldStyle.h"
135#include "MCalibrationBlindCamTwoNewStyle.h"
136#include "MCalibrationBlindCamThreeNewStyle.h"
137#include "MCalibrationChargeCalc.h"
138#include "MCalibColorSet.h"
139#include "MCalibrationRelTimeCam.h"
140#include "MCalibrationRelTimeCalc.h"
141
142#include "MHGausEvents.h"
143#include "MHCalibrationCam.h"
144#include "MHCalibrationChargeCam.h"
145#include "MHCalibrationChargeBlindCam.h"
146#include "MHCalibrationChargePINDiode.h"
147#include "MHCalibrationRelTimeCam.h"
148#include "MHCalibrationPix.h"
149
150#include "MReadMarsFile.h"
151#include "MPedCalcPedRun.h"
152#include "MRawFileRead.h"
153#include "MGeomApply.h"
154#include "MTaskEnv.h"
155#include "MBadPixelsMerge.h"
156#include "MBadPixelsCam.h"
157#include "MExtractTime.h"
158#include "MExtractor.h"
159#include "MExtractPINDiode.h"
160#include "MExtractBlindPixel.h"
161#include "MExtractSlidingWindow.h"
162#include "MExtractTimeHighestIntegral.h"
163#include "MFCosmics.h"
164#include "MFTriggerPattern.h"
165#include "MContinue.h"
166#include "MFillH.h"
167
168#include "MTriggerPatternDecode.h"
169
170#include "MArrivalTimeCam.h"
171
172#include "MStatusDisplay.h"
173
174ClassImp(MJCalibration);
175
176using namespace std;
177
178const Int_t MJCalibration::gkIFAEBoxInaugurationRun = 20113;
179const Int_t MJCalibration::gkSecondBlindPixelInstallation = 31693;
180const Int_t MJCalibration::gkSpecialPixelsContInstallation = 34057;
181const Int_t MJCalibration::gkThirdBlindPixelInstallation = 43308;
182const TString MJCalibration::fgReferenceFile = "mjobs/calibrationref.rc";
183const TString MJCalibration::fgHiLoCalibFile = "mjobs/hilocalib_df46.root";
184
185// --------------------------------------------------------------------------
186//
187// Default constructor.
188//
189// - fExtractor to NULL, fTimeExtractor to NULL, fColor to kNONE,
190// fDisplay to kNormalDisplay, kRelTimes to kFALSE, kataCheck to kFALSE, kDebug to kFALSE,
191// kIntensity to kFALSE
192// - SetUseBlindPixel()
193// - SetUsePINDiode()
194//
195MJCalibration::MJCalibration(const char *name, const char *title)
196 : fExtractor(NULL), fTimeExtractor(NULL),
197 fColor(MCalibrationCam::kNONE), fDisplayType(kDataCheckDisplay),
198 fGeometry("MGeomCamMagic")
199{
200
201 fName = name ? name : "MJCalibration";
202 fTitle = title ? title : "Tool to create the calibration constants for one calibration run";
203
204 SetHiLoCalibration();
205 SetRelTimeCalibration();
206 SetDebug(kFALSE);
207 SetIntensity(kFALSE);
208
209 SetReferenceFile();
210 SetHiLoCalibFile();
211
212 fConvFADC2PheMin = 0.;
213 fConvFADC2PheMax = 1.5;
214 fConvFADC2PhotMin = 0.;
215 fConvFADC2PhotMax = 10.;
216 fQEMin = 0.;
217 fQEMax = 0.3;
218 fArrivalTimeMin = 1.;
219 fArrivalTimeMax = 10.;
220 fTimeOffsetMin = -3.;
221 fTimeOffsetMax = 3.;
222 fTimeResolutionMin = 0.;
223 fTimeResolutionMax = 1.;
224
225 fRefFADC2PheInner = 0.14;
226 fRefFADC2PheOuter = 0.4;
227 fRefConvFADC2PheInner = 0.14;
228 fRefConvFADC2PheOuter = 0.52;
229 fRefQEInner = 0.18;
230 fRefQEOuter = 0.12;
231 fRefArrivalTimeInner = 4.5;
232 fRefArrivalTimeOuter = 5.0;
233 fRefArrivalTimeRmsInner = 0.5;
234 fRefArrivalTimeRmsOuter = 0.5;
235 fRefTimeOffsetInner = -0.23;
236 fRefTimeOffsetOuter = 0.39;
237 fRefTimeResolutionInner = 0.153;
238 fRefTimeResolutionOuter = 0.128;
239
240}
241
242void MJCalibration::DrawTab(MParList &plist, const char *cont, const char *name, Option_t *opt)
243{
244 TObject *obj = plist.FindObject(cont);
245 if (!obj)
246 return;
247
248 fDisplay->AddTab(name);
249 obj->DrawClone(opt);
250}
251
252// --------------------------------------------------------------------------
253//
254// Display the results in MStatusDisplay:
255//
256// - Add "Calibration" to the MStatusDisplay title
257// - Retrieve the MGeomCam from MParList
258// - Initialize the following MHCamera's:
259// 1) MCalibrationPix::GetMean()
260// 2) MCalibrationPix::Sigma()
261// 3) MCalibrationChargePix::GetRSigma()
262// 4) MCalibrationChargePix::GetRSigmaPerCharge()
263// 5) MCalibrationChargePix::GetPheFFactorMethod()
264// 6) MCalibrationChargePix::GetMeanConvFADC2Phe()
265// 7) MCalibrationChargePix::GetMeanFFactorFADC2Phot()
266// 8) MCalibrationQEPix::GetQECascadesFFactor()
267// 9) MCalibrationQEPix::GetQECascadesBlindPixel()
268// 10) MCalibrationQEPix::GetQECascadesPINDiode()
269// 11) MCalibrationQEPix::GetQECascadesCombined()
270// 12) MCalibrationQEPix::IsAverageQEFFactorAvailable()
271// 13) MCalibrationQEPix::IsAverageQEBlindPixelAvailable()
272// 14) MCalibrationQEPix::IsAverageQEPINDiodeAvailable()
273// 15) MCalibrationQEPix::IsAverageQECombinedAvailable()
274// 16) MCalibrationChargePix::IsHiGainSaturation()
275// 17) MCalibrationPix::GetHiLoMeansDivided()
276// 18) MCalibrationPix::GetHiLoSigmasDivided()
277// 19) MCalibrationChargePix::GetHiGainPickup()
278// 20) MCalibrationChargePix::GetLoGainPickup()
279// 21) MCalibrationChargePix::GetHiGainBlackout()
280// 22) MCalibrationChargePix::GetLoGainBlackout()
281// 23) MCalibrationPix::IsExcluded()
282// 24) MBadPixelsPix::IsUnsuitable(MBadPixelsPix::kUnsuitableRun)
283// 25) MBadPixelsPix::IsUnsuitable(MBadPixelsPix::kUnreliableRun)
284// 26) MBadPixelsPix::IsUncalibrated(MBadPixelsPix::kHiGainOscillating)
285// 27) MBadPixelsPix::IsUncalibrated(MBadPixelsPix::kLoGainOscillating)
286// 28) MCalibrationChargePix::GetAbsTimeMean()
287// 29) MCalibrationChargePix::GetAbsTimeRms()
288//
289// If the flag SetFullDisplay() is set, all MHCameras will be displayed.
290// if the flag SetDataCheckDisplay() is set, only the most important ones are displayed
291// and otherwise, (default: SetNormalDisplay()), a good selection of plots is given
292//
293void MJCalibration::DisplayResult(MParList &plist)
294{
295 if (!fDisplay)
296 return;
297
298 TString drawoption = "nonew ";
299 if (fDisplayType == kDataCheckDisplay)
300 drawoption += "datacheck";
301 if (fDisplayType == kFullDisplay)
302 drawoption += "all";
303
304 if (IsUsePINDiode())
305 DrawTab(plist, "MHCalibrationChargePINDiode", "PINDiode", drawoption);
306 if (IsUseBlindPixel())
307 DrawTab(plist, "MHCalibrationChargeBlindCam", "BlindPix", drawoption);
308 if (IsRelTimes())
309 DrawTab(plist, "MHCalibrationRelTimeCam", "Time", drawoption);
310 DrawTab(plist, "MHCalibrationChargeCam", "Charge", drawoption);
311
312 //
313 // Update display
314 //
315 TString title = fDisplay->GetTitle();
316 title += "-- Calibration ";
317 title += Form("calib%08d", fSequence.GetSequence());
318 title += " --";
319 fDisplay->SetTitle(title);
320
321 //
322 // Get container from list
323 //
324 MGeomCam &geomcam = *(MGeomCam*)plist.FindObject("MGeomCam");
325
326 // Create histograms to display
327 MHCamera disp1 (geomcam, "Charge", "Fitted Mean Signal (Charges)");
328 MHCamera disp2 (geomcam, "SigmaCharge", "Sigma of Fitted Signal");
329 MHCamera disp3 (geomcam, "RSigma", "Reduced Sigmas");
330 MHCamera disp4 (geomcam, "RSigmaPerCharge", "Reduced Sigma per Charge");
331 MHCamera disp5 (geomcam, "NumPhes", "Number Photo-electrons");
332 MHCamera disp6 (geomcam, "ConvFADC2Phes", "Phes per Charge (Before Flat-Field)");
333 MHCamera disp7 (geomcam, "TotalFFactor", "Total F-Factor(F-Factor Method)");
334 MHCamera disp8 (geomcam, "CascadesQEFFactor", "Cascades QE (F-Factor Method)");
335 MHCamera disp9 (geomcam, "CascadesQEBlindPix","Cascades QE (Blind Pixel Method)");
336 MHCamera disp10(geomcam, "CascadesQEPINDiode","Cascades QE (PIN Diode Method)");
337 MHCamera disp11(geomcam, "CascadesQECombined","Cascades QE (Combined Method)");
338 MHCamera disp12(geomcam, "FFactorValid", "Pixels with Valid F-Factor Calibration");
339 MHCamera disp13(geomcam, "BlindPixelValid", "Pixels with valid BlindPixel Calibration");
340 MHCamera disp14(geomcam, "PINdiodeValid", "Pixels with Valid PINDiode Calibration");
341 MHCamera disp15(geomcam, "CombinedValid", "Pixels with Valid Combined Calibration");
342 MHCamera disp16(geomcam, "Saturation", "Pixels with Saturated Hi Gain");
343 MHCamera disp17(geomcam, "ConversionMeans", "Conversion HiGain.vs.LoGain Means");
344 MHCamera disp18(geomcam, "ConversionSigmas", "Conversion HiGain.vs.LoGain Sigmas");
345 MHCamera disp19(geomcam, "HiGainPickup", "Number Pickup Events Hi Gain");
346 MHCamera disp20(geomcam, "LoGainPickup", "Number Pickup Events Lo Gain");
347 MHCamera disp21(geomcam, "HiGainBlackout", "Number Blackout Events Hi Gain");
348 MHCamera disp22(geomcam, "LoGainBlackout", "Number Blackout Events Lo Gain");
349 MHCamera disp23(geomcam, "Excluded", "Pixels Previously Excluded");
350 MHCamera disp24(geomcam, "UnSuitable", "Pixels NOT Suited for Further Analysis");
351 MHCamera disp25(geomcam, "UnReliable", "Pixels Suitable, but NOT Reliable for Further Analysis");
352 MHCamera disp26(geomcam, "HiGainOscillating", "Oscillating Pixels High Gain");
353 MHCamera disp27(geomcam, "LoGainOscillating", "Oscillating Pixels Low Gain");
354 MHCamera disp28(geomcam, "AbsTimeMean", "Abs. Arrival Times");
355 MHCamera disp29(geomcam, "AbsTimeRms", "RMS of Arrival Times");
356 MHCamera disp30(geomcam, "MeanTime", "Mean Rel. Arrival Times");
357 MHCamera disp31(geomcam, "SigmaTime", "Sigma Rel. Arrival Times");
358 MHCamera disp32(geomcam, "TimeProb", "Probability of Time Fit");
359 MHCamera disp33(geomcam, "TimeNotFitValid", "Pixels with not valid Fit Results");
360 MHCamera disp34(geomcam, "TimeOscillating", "Oscillating Pixels");
361 MHCamera disp35(geomcam, "TotalConv", "Conversion Factor to Photons");
362 MHCamera disp36(geomcam, "RMSperMean", "Charge histogram RMS per Mean");
363 MHCamera disp37(geomcam, "TotalConvPhe", "Conversion Factor to equiv. Phe's");
364
365 MCalibrationChargeCam *cam = NULL;
366 MCalibrationQECam *qecam = NULL;
367 MCalibrationRelTimeCam *relcam = NULL;
368 MBadPixelsCam *badcam = NULL;
369
370 if (IsIntensity())
371 {
372 cam = (MCalibrationChargeCam*) fIntensCalibCam.GetCam();
373 qecam = (MCalibrationQECam*) fIntensQECam.GetCam();
374 relcam = (MCalibrationRelTimeCam*)fIntensRelTimeCam.GetCam();
375 badcam = (MBadPixelsCam*) fIntensBadCam.GetCam();
376 }
377 else
378 {
379 cam = &fCalibrationCam;
380 qecam = &fQECam;
381 relcam = &fRelTimeCam;
382 badcam = &fBadPixels;
383 }
384
385 // Fitted charge means and sigmas
386 disp1.SetCamContent(*cam, 0);
387 disp1.SetCamError( *cam, 1);
388 disp2.SetCamContent(*cam, 2);
389 disp2.SetCamError( *cam, 3);
390
391 // Reduced Sigmas and reduced sigmas per charge
392 disp3.SetCamContent(*cam, 5);
393 disp3.SetCamError( *cam, 6);
394 disp4.SetCamContent(*cam, 7);
395 disp4.SetCamError( *cam, 8);
396
397 // F-Factor Method
398 disp5.SetCamContent(*cam, 9);
399 disp5.SetCamError( *cam, 10);
400 disp6.SetCamContent(*cam, 11);
401 disp6.SetCamError( *cam, 12);
402 disp7.SetCamContent(*cam, 13);
403 disp7.SetCamError( *cam, 14);
404
405 // Quantum Efficiencies
406 disp8.SetCamContent (*qecam, 0 );
407 disp8.SetCamError (*qecam, 1 );
408 disp9.SetCamContent (*qecam, 2 );
409 disp9.SetCamError (*qecam, 3 );
410 disp10.SetCamContent(*qecam, 4 );
411 disp10.SetCamError (*qecam, 5 );
412 disp11.SetCamContent(*qecam, 6 );
413 disp11.SetCamError (*qecam, 7 );
414
415 // Valid flags
416 disp12.SetCamContent(*qecam, 8 );
417 disp13.SetCamContent(*qecam, 9 );
418 disp14.SetCamContent(*qecam, 10);
419 disp15.SetCamContent(*qecam, 11);
420
421 // Conversion Hi-Lo
422 disp16.SetCamContent(*cam, 25);
423 disp17.SetCamContent(*cam, 16);
424 disp17.SetCamError (*cam, 17);
425 disp18.SetCamContent(*cam, 18);
426 disp18.SetCamError (*cam, 19);
427
428 // Pickup and Blackout
429 disp19.SetCamContent(*cam, 21);
430 disp20.SetCamContent(*cam, 22);
431 disp21.SetCamContent(*cam, 23);
432 disp22.SetCamContent(*cam, 24);
433
434 // Pixels with defects
435 disp23.SetCamContent(*cam, 20);
436 disp24.SetCamContent(*badcam, 6);
437 disp25.SetCamContent(*badcam, 7);
438
439 // Oscillations
440 disp26.SetCamContent(*badcam, 10);
441 disp27.SetCamContent(*badcam, 11);
442
443 // Arrival Times
444 disp28.SetCamContent(*cam, 26);
445 disp28.SetCamError( *cam, 27);
446 disp29.SetCamContent(*cam, 27);
447
448 // RMS and Mean
449 disp36.SetCamContent(*cam,32);
450 disp36.SetCamError(*cam,33);
451
452 disp1.SetYTitle("Q [FADC cnts]");
453 disp2.SetYTitle("\\sigma_{Q} [FADC cnts]");
454
455 disp3.SetYTitle("\\sqrt{\\sigma^{2}_{Q} - RMS^{2}_{Ped}} [FADC cnts]");
456 disp4.SetYTitle("Red.Sigma/<Q> [1]");
457
458 disp5.SetYTitle("Photo-electons [1]");
459 disp6.SetYTitle("Phes/<Q> [FADC cnts^{-1}]");
460 disp7.SetYTitle("Total F-Factor [1]");
461
462 disp8.SetYTitle("QE [1]");
463 disp9.SetYTitle("QE [1]");
464 disp10.SetYTitle("QE [1]");
465 disp11.SetYTitle("QE [1]");
466
467 disp12.SetYTitle("[1]");
468 disp13.SetYTitle("[1]");
469 disp14.SetYTitle("[1]");
470 disp15.SetYTitle("[1]");
471 disp16.SetYTitle("[1]");
472
473 disp17.SetYTitle("<Q>(High)/<Q>(Low) [1]");
474 disp18.SetYTitle("\\sigma_{Q}(High)/\\sigma_{Q}(Low) [1]");
475
476 disp19.SetYTitle("[1]");
477 disp20.SetYTitle("[1]");
478 disp21.SetYTitle("[1]");
479 disp22.SetYTitle("[1]");
480 // disp23.SetYTitle("[1]");
481 // disp24.SetYTitle("[1]");
482 // disp25.SetYTitle("[1]");
483 disp26.SetYTitle("[1]");
484 disp27.SetYTitle("[1]");
485
486 disp28.SetYTitle("Mean Abs. Time [FADC sl.]");
487 disp29.SetYTitle("RMS Abs. Time [FADC sl.]");
488 disp35.SetYTitle("Conv.Factor [Ph/FADC cnts]");
489 disp36.SetYTitle("Charge RMS/<Q> [1]");
490 disp37.SetYTitle("Conv.Factor [Phe/FADC cnts]");
491
492 for (UInt_t i=0;i<geomcam.GetNumPixels();i++)
493 {
494
495 MCalibrationChargePix &pix = (MCalibrationChargePix&)(*cam) [i];
496 MCalibrationQEPix &qe = (MCalibrationQEPix&) (*qecam)[i];
497
498 if (!pix.IsFFactorMethodValid())
499 continue;
500
501 const Float_t convphe = pix.GetMeanConvFADC2Phe();
502 const Float_t quaeff = qe.GetQECascadesFFactor(0.);
503
504 disp35.Fill(i,convphe/quaeff);
505 disp35.SetUsed(i);
506
507 disp37.Fill(i,convphe/quaeff*MCalibrationQEPix::gkDefaultAverageQE);
508 disp37.SetUsed(i);
509 }
510
511
512 if (IsRelTimes())
513 {
514 disp30.SetCamContent(*relcam,0);
515 disp30.SetCamError( *relcam,1);
516 disp31.SetCamContent(*relcam,2);
517 disp31.SetCamError( *relcam,3);
518 disp32.SetCamContent(*relcam,4);
519 disp33.SetCamContent(fBadPixels,20);
520 disp34.SetCamContent(fBadPixels,21);
521
522 disp30.SetYTitle("Time Offset [FADC units]");
523 disp31.SetYTitle("Timing resolution [FADC units]");
524 disp32.SetYTitle("P_{Time} [1]");
525 disp33.SetYTitle("[1]");
526 disp34.SetYTitle("[1]");
527 }
528
529 if (fDisplayType == kDataCheckDisplay)
530 {
531
532 TCanvas &c1 = fDisplay->AddTab("FitCharge");
533 c1.Divide(3, 3);
534
535 //
536 // MEAN CHARGES
537 //
538
539 c1.cd(1);
540 gPad->SetBorderMode(0);
541 gPad->SetTicks();
542 MHCamera *obj1=(MHCamera*)disp1.DrawCopy("hist");
543 //
544 // for the datacheck, fix the ranges!!
545 //
546 // obj1->SetMinimum(fChargeMin);
547 // obj1->SetMaximum(fChargeMax);
548 //
549 // Set the datacheck sizes:
550 //
551 FixDataCheckHist((TH1D*)obj1);
552 obj1->SetStats(kFALSE);
553 //
554 // set reference lines
555 //
556 // DisplayReferenceLines(obj1,0);
557
558 c1.cd(4);
559 gPad->SetBorderMode(0);
560 obj1->SetPrettyPalette();
561 obj1->Draw();
562
563 c1.cd(7);
564 gPad->SetBorderMode(0);
565 gPad->SetTicks();
566 TH1D *obj2 = (TH1D*)obj1->Projection(obj1->GetName());
567 obj2->Draw();
568 obj2->SetBit(kCanDelete);
569 obj2->Fit("gaus","Q");
570 TF1 *fun2 = obj2->GetFunction("gaus");
571 fun2->SetLineColor(kYellow);
572 gPad->Modified();
573 gPad->Update();
574 TPaveStats *st = (TPaveStats*)obj2->GetListOfFunctions()->FindObject("stats");
575 st->SetY1NDC(0.55);
576 st->SetY2NDC(0.89);
577 st->SetX1NDC(0.65);
578 st->SetX2NDC(0.99);
579 gPad->Modified();
580 gPad->Update();
581 //
582 // Set the datacheck sizes:
583 //
584 FixDataCheckHist(obj2);
585 obj2->SetStats(1);
586
587 //
588 // Display the outliers as dead and noisy pixels
589 //
590 DisplayOutliers(obj2,"low-ampl.","high-ampl.");
591 TLatex flattex;
592 flattex.SetTextSize(0.07);
593 const Double_t minl = obj2->GetBinCenter(obj2->GetXaxis()->GetFirst());
594 const Double_t maxl = obj2->GetBinCenter(obj2->GetXaxis()->GetLast());
595 flattex.DrawLatex(minl+0.015*(maxl-minl),obj2->GetBinContent(obj2->GetMaximumBin())/1.35,
596 Form("Flatfield precision: %4.2f%%",
597 fun2->GetParameter(2)/fun2->GetParameter(1)*100.));
598
599 //
600 // RMS per Charge
601 //
602
603 c1.cd(2);
604 gPad->SetBorderMode(0);
605 gPad->SetTicks();
606 MHCamera *obj3=(MHCamera*)disp36.DrawCopy("hist");
607 //
608 // for the datacheck, fix the ranges!!
609 //
610 // obj3->SetMinimum(0.);
611 // obj3->SetMaximum(fChargeMax);
612 //
613 // Set the datacheck sizes:
614 //
615 FixDataCheckHist((TH1D*)obj3);
616 obj3->SetStats(kFALSE);
617 //
618 // set reference lines
619 //
620 // DisplayReferenceLines(obj3,0);
621
622 c1.cd(5);
623 gPad->SetBorderMode(0);
624 obj3->SetPrettyPalette();
625 obj3->Draw();
626
627 c1.cd(8);
628 gPad->SetBorderMode(0);
629 if (geomcam.InheritsFrom("MGeomCamMagic"))
630 DisplayDoubleProject(&disp36, "dead", "noisy");
631
632 //
633 // PHOTO ELECTRONS
634 //
635
636 c1.cd(3);
637 gPad->SetBorderMode(0);
638 gPad->SetTicks();
639 MHCamera *obj4=(MHCamera*)disp5.DrawCopy("hist");
640 //
641 // for the datacheck, fix the ranges!!
642 //
643 // obj3->SetMinimum(fChargeMin);
644 // obj3->SetMaximum(fChargeMax);
645 //
646 // Set the datacheck sizes:
647 //
648 FixDataCheckHist((TH1D*)obj4);
649 obj4->SetStats(kFALSE);
650 //
651 // set reference lines
652 //
653 // DisplayReferenceLines(obj3,0);
654
655 c1.cd(6);
656 gPad->SetBorderMode(0);
657 obj4->SetPrettyPalette();
658 obj4->Draw();
659
660 c1.cd(9);
661 gPad->SetBorderMode(0);
662 if (geomcam.InheritsFrom("MGeomCamMagic"))
663 DisplayDoubleProject(&disp5, "dead", "noisy");
664
665 //
666 // CONVERSION FACTORS
667 //
668 TCanvas &c2 = fDisplay->AddTab("Conversion");
669 c2.Divide(3,3);
670
671 c2.cd(1);
672 gPad->SetBorderMode(0);
673 gPad->SetTicks();
674 MHCamera *obj5=(MHCamera*)disp6.DrawCopy("hist");
675 //
676 // for the datacheck, fix the ranges!!
677 //
678 obj5->SetMinimum(fConvFADC2PheMin);
679 obj5->SetMaximum(fConvFADC2PheMax);
680 //
681 // Set the datacheck sizes:
682 //
683 FixDataCheckHist((TH1D*)obj5);
684 obj5->SetStats(kFALSE);
685 //
686 // set reference lines
687 //
688 DisplayReferenceLines(obj5,2);
689
690 c2.cd(4);
691 gPad->SetBorderMode(0);
692 obj5->SetPrettyPalette();
693 obj5->Draw();
694
695 c2.cd(7);
696 gPad->SetBorderMode(0);
697 if (geomcam.InheritsFrom("MGeomCamMagic"))
698 DisplayDoubleProject(&disp6, "noisy", "dead");
699
700 //
701 // QUANTUM EFFICIENCY
702 //
703 c2.cd(2);
704 gPad->SetBorderMode(0);
705 gPad->SetTicks();
706 MHCamera *obj6=(MHCamera*)disp8.DrawCopy("hist");
707 //
708 // for the datacheck, fix the ranges!!
709 //
710 obj6->SetMinimum(fQEMin);
711 obj6->SetMaximum(fQEMax);
712 //
713 // Set the datacheck sizes:
714 //
715 FixDataCheckHist((TH1D*)obj6);
716 obj6->SetStats(kFALSE);
717 //
718 // set reference lines
719 //
720 DisplayReferenceLines(obj6,0);
721
722 c2.cd(5);
723 gPad->SetBorderMode(0);
724 obj6->SetPrettyPalette();
725 obj6->Draw();
726
727 c2.cd(8);
728 gPad->SetBorderMode(0);
729 if (geomcam.InheritsFrom("MGeomCamMagic"))
730 DisplayDoubleProject(&disp8, "noisy", "dead");
731
732 //
733 // CONVERSION FADC TO PHOTONS
734 //
735
736 c2.cd(3);
737 gPad->SetBorderMode(0);
738 gPad->SetTicks();
739 MHCamera *obj7=(MHCamera*)disp37.DrawCopy("hist");
740 //
741 // for the datacheck, fix the ranges!!
742 //
743 obj7->SetMinimum(fConvFADC2PheMin);
744 obj7->SetMaximum(fConvFADC2PheMax);
745 //
746 // Set the datacheck sizes:
747 //
748 FixDataCheckHist((TH1D*)obj7);
749 obj7->SetStats(kFALSE);
750 //
751 // set reference lines
752 //
753 DisplayReferenceLines(obj7,1);
754
755 c2.cd(6);
756 gPad->SetBorderMode(0);
757 obj7->SetPrettyPalette();
758 obj7->Draw();
759 c2.cd(9);
760 gPad->SetBorderMode(0);
761 if (geomcam.InheritsFrom("MGeomCamMagic"))
762 DisplayDoubleProject(&disp35, "noisy", "dead");
763
764 //
765 // ARRIVAL TIMES
766 //
767 TCanvas &c3 = fDisplay->AddTab("AbsTimes");
768 c3.Divide(2,3);
769
770 c3.cd(1);
771 gPad->SetBorderMode(0);
772 gPad->SetTicks();
773 MHCamera *obj10=(MHCamera*)disp28.DrawCopy("hist");
774 //
775 // for the datacheck, fix the ranges!!
776 //
777 obj10->SetMinimum(fArrivalTimeMin);
778 obj10->SetMaximum(fArrivalTimeMax);
779 //
780 // Set the datacheck sizes:
781 //
782 FixDataCheckHist((TH1D*)obj10);
783 obj10->SetStats(kFALSE);
784 //
785 // set reference lines
786 //
787 DisplayReferenceLines(obj10,3);
788
789 c3.cd(3);
790 gPad->SetBorderMode(0);
791 obj10->SetPrettyPalette();
792 obj10->Draw();
793
794 c3.cd(5);
795 gPad->SetBorderMode(0);
796 if (geomcam.InheritsFrom("MGeomCamMagic"))
797 DisplayDoubleProject(&disp28, "early", "late");
798
799 //
800 // ARRIVAL TIMES JITTER
801 //
802 c3.cd(2);
803 gPad->SetBorderMode(0);
804 gPad->SetTicks();
805 MHCamera *obj11=(MHCamera*)disp29.DrawCopy("hist");
806 //
807 // for the datacheck, fix the ranges!!
808 //
809 // obj11->SetMinimum(fArrivalTimeMin);
810 // obj11->SetMaximum(fArrivalTimeMax);
811 //
812 // Set the datacheck sizes:
813 //
814 FixDataCheckHist((TH1D*)obj11);
815 obj11->SetStats(kFALSE);
816 //
817 // set reference lines
818 //
819 DisplayReferenceLines(obj11,4);
820
821 c3.cd(4);
822 gPad->SetBorderMode(0);
823 obj11->SetPrettyPalette();
824 obj11->Draw();
825
826 c3.cd(6);
827 gPad->SetBorderMode(0);
828 if (geomcam.InheritsFrom("MGeomCamMagic"))
829 DisplayDoubleProject(&disp29, "", "jittering");
830
831 //
832 // UNSUITABLE PIXELS
833 //
834 TCanvas &c4 = fDisplay->AddTab("Defect");
835 c4.Divide(2,2);
836
837 c4.cd(1);
838 gPad->SetBorderMode(0);
839 gPad->SetTicks();
840 MHCamera *obj8=(MHCamera*)disp24.DrawCopy("hist");
841 //
842 // for the datacheck, fix the ranges!!
843 //
844 const Double_t max = 12.;
845 obj8->SetMinimum(0.);
846 obj8->SetMaximum(max);
847 //
848 // Set the datacheck sizes:
849 //
850 FixDataCheckHist((TH1D*)obj8);
851 obj8->SetStats(kFALSE);
852
853 gStyle->SetPalette(1);
854 const Int_t numcol = gStyle->GetNumberOfColors()-3;
855
856 TPaveText *pave = new TPaveText(0.0,0.0,0.99,0.99);
857 pave->SetBit(kCanDelete);
858 pave->ConvertNDCtoPad();
859 pave->SetTextSize(0.045);
860 pave->AddText(" ");
861 TText *t1 = pave->AddText(Form("Signal smaller 4.5 Pedestal RMS: %3i pixels",
862 CountBadPixels(&disp24,1)));
863 t1->SetTextColor(gStyle->GetColorPalette(Int_t(1./max*numcol)));
864 t1->SetTextAlign(12);
865 TText *t2 = pave->AddText(Form("%s%3i%s","Signal Rel. error too large: ",
866 CountBadPixels(&disp24,2)," pixels"));
867 t2->SetTextColor(gStyle->GetColorPalette(Int_t(2./max*numcol)));
868 t2->SetTextAlign(12);
869 TText *t4 = pave->AddText(Form("Low Gain Saturation: %3i pixels",
870 CountBadPixels(&disp24,3)));
871 t4->SetTextColor(gStyle->GetColorPalette(Int_t(3./max*numcol)));
872 t4->SetTextAlign(12);
873 TText *t5 = pave->AddText(Form("Mean Arr. Time In First Extraction Bin: %3i pixels",
874 CountBadPixels(&disp24,4)));
875 t5->SetTextColor(gStyle->GetColorPalette(Int_t(4./max*numcol)));
876 t5->SetTextAlign(12);
877 TText *t6 = pave->AddText(Form("Mean Arr. Time In Last 2 Extraction Bins: %3i pixels",
878 CountBadPixels(&disp24,5)));
879 t6->SetTextColor(gStyle->GetColorPalette(Int_t(5./max*numcol)));
880 t6->SetTextAlign(12);
881 TText *t9 = pave->AddText(Form("Deviating Number of Photons: %3i pixels",
882 CountBadPixels(&disp24,6)));
883 t9->SetTextColor(gStyle->GetColorPalette(Int_t(6./max*numcol)));
884 t9->SetTextAlign(12);
885 TText *t10= pave->AddText(Form("High-Gain Histogram Overflow: %3i pixels",
886 CountBadPixels(&disp24,7 )));
887 t10->SetTextColor(gStyle->GetColorPalette(Int_t(7./max*numcol)));
888 t10->SetTextAlign(12);
889 TText *t11= pave->AddText(Form("Low-Gain Histogram Overflow: %3i pixels",
890 CountBadPixels(&disp24,8 )));
891 t11->SetTextColor(gStyle->GetColorPalette(Int_t(8./max*numcol)));
892 t11->SetTextAlign(12);
893 TText *t12= pave->AddText(Form("Presumably dead from Ped. Rms: %3i pixels",
894 CountBadPixels(&disp24,9 )));
895 t12->SetTextColor(gStyle->GetColorPalette(Int_t(9./max*numcol)));
896 t12->SetTextAlign(12);
897 TText *t13= pave->AddText(Form("Fluctuating Pulse Arrival Times: %3i pixels",
898 CountBadPixels(&disp24,10)));
899 t13->SetTextColor(gStyle->GetColorPalette(Int_t(10./max*numcol)));
900 t13->SetTextAlign(12);
901 TText *t17 = pave->AddText(Form("Deviating Number of Photo-electrons: %3i pixels",
902 CountBadPixels(&disp24,11)));
903 t17->SetTextColor(gStyle->GetColorPalette(Int_t(11./max*numcol)));
904 t17->SetTextAlign(12);
905 TText *t14= pave->AddText(Form("Previously Excluded: %3i pixels",
906 CountBadPixels(&disp24,12)));
907 t14->SetTextColor(gStyle->GetColorPalette(Int_t(12./max*numcol)));
908 t14->SetTextAlign(12);
909 pave->Draw();
910
911 c4.cd(3);
912 gPad->SetBorderMode(0);
913 obj8->Draw();
914 obj8->SetPrettyPalette();
915
916 //
917 // UNRELIABLE PIXELS
918 //
919
920 c4.cd(2);
921 gPad->SetBorderMode(0);
922 gPad->SetTicks();
923 MHCamera *obj9=(MHCamera*)disp25.DrawCopy("hist");
924 //
925 // for the datacheck, fix the ranges!!
926 //
927 const Double_t max2 = 9.;
928 obj9->SetMinimum(0.);
929 obj9->SetMaximum(max2);
930 //
931 // Set the datacheck sizes:
932 //
933 FixDataCheckHist((TH1D*)obj9);
934 obj9->SetStats(kFALSE);
935
936 gStyle->SetPalette(1);
937
938 TPaveText *pave2 = new TPaveText(0.0,0.0,0.99,0.99);
939 pave2->SetBit(kCanDelete);
940 pave2->ConvertNDCtoPad();
941 pave2->SetTextSize(0.05);
942 pave2->AddText(" ");
943 TText *t3 = pave2->AddText(Form("Signal Sigma smaller Pedestal RMS: %3i pixels",
944 CountBadPixels(&disp25,1)));
945 t3->SetTextColor(gStyle->GetColorPalette(Int_t(1./max2*numcol)));
946 t3->SetTextAlign(12);
947 TText *tt1 = pave2->AddText(Form("High Gain Signals could not be fitted: %3i pixels",
948 CountBadPixels(&disp25,3)));
949 tt1->SetTextColor(gStyle->GetColorPalette(Int_t(3./max2*numcol)));
950 tt1->SetTextAlign(12);
951 TText *tt2 = pave2->AddText(Form("Low Gain Signals could not be fitted: %3i pixels",
952 CountBadPixels(&disp25,4)));
953 tt2->SetTextColor(gStyle->GetColorPalette(Int_t(4./max2*numcol)));
954 tt2->SetTextAlign(12);
955 TText *tt3 = pave2->AddText(Form("Relative Arr. Times could not be fitted: %3i pixels",
956 CountBadPixels(&disp25,5)));
957 tt3->SetTextColor(gStyle->GetColorPalette(Int_t(5./max2*numcol)));
958 tt3->SetTextAlign(12);
959 TText *tt4 = pave2->AddText(Form("High Gain Signals Oscillation: %3i pixels",
960 CountBadPixels(&disp25,6)));
961 tt4->SetTextColor(gStyle->GetColorPalette(Int_t(6./max2*numcol)));
962 tt4->SetTextAlign(12);
963 TText *tt5 = pave2->AddText(Form("Low Gain Signals Oscillation: %3i pixels",
964 CountBadPixels(&disp25,7)));
965 tt5->SetTextColor(gStyle->GetColorPalette(Int_t(7./max2*numcol)));
966 tt5->SetTextAlign(12);
967 TText *tt6 = pave2->AddText(Form("Relative Arr. Times Oscillation: %3i pixels",
968 CountBadPixels(&disp25,8)));
969 tt6->SetTextColor(gStyle->GetColorPalette(Int_t(8./max2*numcol)));
970 tt6->SetTextAlign(12);
971 TText *tt8 = pave2->AddText(Form("Deviating global F-Factor: %3i pixels",
972 CountBadPixels(&disp25,9)));
973 tt8->SetTextColor(gStyle->GetColorPalette(Int_t(9./max2*numcol)));
974 tt8->SetTextAlign(12);
975 pave2->Draw();
976
977 c4.cd(4);
978 gPad->SetBorderMode(0);
979 obj9->SetPrettyPalette();
980 obj9->Draw();
981
982 if (IsRelTimes())
983 {
984 TCanvas &c5 = fDisplay->AddTab("RelTimes");
985 c5.Divide(2,3);
986
987 //
988 // MEAN REL. ARR. TIMES
989 //
990 c5.cd(1);
991 gPad->SetBorderMode(0);
992 gPad->SetTicks();
993 MHCamera *obj10=(MHCamera*)disp30.DrawCopy("hist");
994 //
995 // for the datacheck, fix the ranges!!
996 //
997 obj10->SetMinimum(fTimeOffsetMin);
998 obj10->SetMaximum(fTimeOffsetMax);
999 //
1000 // Set the datacheck sizes:
1001 //
1002 FixDataCheckHist((TH1D*)obj10);
1003 obj10->SetStats(kFALSE);
1004 //
1005 // set reference lines
1006 //
1007 DisplayReferenceLines(obj10,5);
1008
1009 c5.cd(3);
1010 gPad->SetBorderMode(0);
1011 obj10->SetPrettyPalette();
1012 obj10->Draw();
1013
1014 c5.cd(5);
1015 gPad->SetBorderMode(0);
1016 if (geomcam.InheritsFrom("MGeomCamMagic"))
1017 DisplayDoubleProject(&disp30, "early", "late");
1018
1019 //
1020 // JITTER Rel. Arr. Times
1021 //
1022 c5.cd(2);
1023 gPad->SetBorderMode(0);
1024 gPad->SetTicks();
1025 MHCamera *obj11=(MHCamera*)disp31.DrawCopy("hist");
1026 //
1027 // for the datacheck, fix the ranges!!
1028 //
1029 obj11->SetMinimum(fTimeResolutionMin);
1030 obj11->SetMaximum(fTimeResolutionMax);
1031 //
1032 // Set the datacheck sizes:
1033 //
1034 FixDataCheckHist((TH1D*)obj11);
1035 obj11->SetStats(kFALSE);
1036 //
1037 // set reference lines
1038 //
1039 DisplayReferenceLines(obj11,6);
1040
1041 c5.cd(4);
1042 gPad->SetBorderMode(0);
1043 obj11->SetPrettyPalette();
1044 obj11->Draw();
1045
1046 c5.cd(6);
1047 gPad->SetBorderMode(0);
1048 if (geomcam.InheritsFrom("MGeomCamMagic"))
1049 DisplayDoubleProject(&disp31, "too stable", "jittering");
1050
1051 }
1052 return;
1053 }
1054
1055 if (fDisplayType == kNormalDisplay)
1056 {
1057
1058 // Charges
1059 TCanvas &c11 = fDisplay->AddTab("FitCharge");
1060 c11.Divide(2, 4);
1061
1062 disp1.CamDraw(c11, 1, 2, 5, 1);
1063 disp2.CamDraw(c11, 2, 2, 5, 1);
1064
1065 // Reduced Sigmas
1066 TCanvas &c12 = fDisplay->AddTab("RedSigma");
1067 c12.Divide(2,4);
1068
1069 disp3.CamDraw(c12, 1, 2, 5, 1);
1070 disp4.CamDraw(c12, 2, 2, 5, 1);
1071
1072 // F-Factor
1073 TCanvas &c13 = fDisplay->AddTab("Phe's");
1074 c13.Divide(3,4);
1075
1076 disp5.CamDraw(c13, 1, 3, 5, 1);
1077 disp6.CamDraw(c13, 2, 3, 5, 1);
1078 disp7.CamDraw(c13, 3, 3, 5, 1);
1079
1080 // QE's
1081 TCanvas &c14 = fDisplay->AddTab("QE's");
1082 c14.Divide(4,4);
1083
1084 disp8.CamDraw(c14, 1, 4, 5, 1);
1085 disp9.CamDraw(c14, 2, 4, 5, 1);
1086 disp10.CamDraw(c14, 3, 4, 5, 1);
1087 disp11.CamDraw(c14, 4, 4, 5, 1);
1088
1089 // Defects
1090 TCanvas &c15 = fDisplay->AddTab("Defect");
1091 // c15.Divide(5,2);
1092 c15.Divide(4,2);
1093
1094 /*
1095 disp23.CamDraw(c15, 1, 5, 0);
1096 disp24.CamDraw(c15, 2, 5, 0);
1097 disp25.CamDraw(c15, 3, 5, 0);
1098 disp26.CamDraw(c15, 4, 5, 0);
1099 disp27.CamDraw(c15, 5, 5, 0);
1100 */
1101 disp24.CamDraw(c15, 1, 4, 0);
1102 disp25.CamDraw(c15, 2, 4, 0);
1103 disp26.CamDraw(c15, 3, 4, 0);
1104 disp27.CamDraw(c15, 4, 4, 0);
1105
1106 // Abs. Times
1107 TCanvas &c16 = fDisplay->AddTab("AbsTimes");
1108 c16.Divide(2,3);
1109
1110 disp28.CamDraw(c16, 1, 2, 5);
1111 disp29.CamDraw(c16, 2, 2, 5);
1112
1113 if (IsRelTimes())
1114 {
1115 // Rel. Times
1116 TCanvas &c17 = fDisplay->AddTab("RelTimes");
1117 c17.Divide(2,4);
1118
1119 disp30.CamDraw(c17, 1, 2, 5, 1);
1120 disp31.CamDraw(c17, 2, 2, 5, 1);
1121 }
1122
1123 return;
1124 }
1125
1126 if (fDisplayType == kFullDisplay)
1127 {
1128 MHCalibrationCam *cam = (MHCalibrationCam*)plist.FindObject("MHCalibrationChargeCam");
1129
1130 for (Int_t sector=1;sector<cam->GetAverageSectors();sector++)
1131 {
1132 cam->GetAverageHiGainSector(sector).DrawClone("all");
1133 cam->GetAverageLoGainSector(sector).DrawClone("all");
1134 }
1135
1136 // Charges
1137 TCanvas &c21 = fDisplay->AddTab("FitCharge");
1138 c21.Divide(2, 4);
1139
1140 disp1.CamDraw(c21, 1, 2, 2, 1);
1141 disp2.CamDraw(c21, 2, 2, 2, 1);
1142
1143 // Reduced Sigmas
1144 TCanvas &c23 = fDisplay->AddTab("RedSigma");
1145 c23.Divide(2,4);
1146
1147 disp3.CamDraw(c23, 1, 2, 2, 1);
1148 disp4.CamDraw(c23, 2, 2, 2, 1);
1149
1150 // F-Factor
1151 TCanvas &c24 = fDisplay->AddTab("Phe's");
1152 c24.Divide(3,5);
1153
1154 disp5.CamDraw(c24, 1, 3, 2, 1, 1);
1155 disp6.CamDraw(c24, 2, 3, 2, 1, 1);
1156 disp7.CamDraw(c24, 3, 3, 2, 1, 1);
1157
1158 // QE's
1159 TCanvas &c25 = fDisplay->AddTab("QE's");
1160 c25.Divide(4,5);
1161
1162 disp8.CamDraw(c25, 1, 4, 2, 1, 1);
1163 disp9.CamDraw(c25, 2, 4, 2, 1, 1);
1164 disp10.CamDraw(c25, 3, 4, 2, 1, 1);
1165 disp11.CamDraw(c25, 4, 4, 2, 1, 1);
1166
1167 // Validity
1168 TCanvas &c26 = fDisplay->AddTab("Valid");
1169 c26.Divide(4,2);
1170
1171 disp12.CamDraw(c26, 1, 4, 0);
1172 disp13.CamDraw(c26, 2, 4, 0);
1173 disp14.CamDraw(c26, 3, 4, 0);
1174 disp15.CamDraw(c26, 4, 4, 0);
1175
1176 // Other info
1177 TCanvas &c27 = fDisplay->AddTab("HiLoGain");
1178 c27.Divide(3,3);
1179
1180 disp16.CamDraw(c27, 1, 3, 0);
1181 disp17.CamDraw(c27, 2, 3, 1);
1182 disp18.CamDraw(c27, 3, 3, 1);
1183
1184 // Pickup
1185 TCanvas &c28 = fDisplay->AddTab("Pickup");
1186 c28.Divide(4,2);
1187
1188 disp19.CamDraw(c28, 1, 4, 0);
1189 disp20.CamDraw(c28, 2, 4, 0);
1190 disp21.CamDraw(c28, 3, 4, 0);
1191 disp22.CamDraw(c28, 4, 4, 0);
1192
1193 // Defects
1194 TCanvas &c29 = fDisplay->AddTab("Defect");
1195 // c29.Divide(5,2);
1196 c29.Divide(4,2);
1197
1198 disp24.CamDraw(c29, 1, 4, 0);
1199 disp25.CamDraw(c29, 2, 4, 0);
1200 disp26.CamDraw(c29, 3, 4, 0);
1201 disp27.CamDraw(c29, 4, 4, 0);
1202
1203 // Abs. Times
1204 TCanvas &c30 = fDisplay->AddTab("AbsTimes");
1205 c30.Divide(2,3);
1206
1207 disp28.CamDraw(c30, 1, 2, 2);
1208 disp29.CamDraw(c30, 2, 2, 1);
1209
1210 if (IsRelTimes())
1211 {
1212 // Rel. Times
1213 TCanvas &c31 = fDisplay->AddTab("RelTimes");
1214 c31.Divide(3,5);
1215
1216 disp30.CamDraw(c31, 1, 3, 2, 1, 1);
1217 disp31.CamDraw(c31, 2, 3, 2, 1, 1);
1218 disp32.CamDraw(c31, 3, 3, 4, 1, 1);
1219
1220 // Time Defects
1221 TCanvas &c32 = fDisplay->AddTab("DefTime");
1222 c32.Divide(2,2);
1223
1224 disp33.CamDraw(c32, 1, 2, 0);
1225 disp34.CamDraw(c32, 2, 2, 0);
1226
1227 MHCalibrationCam *cam = (MHCalibrationCam*)plist.FindObject("MHCalibrationRelTimeCam");
1228
1229 for (Int_t sector=1;sector<cam->GetAverageSectors();sector++)
1230 {
1231 cam->GetAverageHiGainSector(sector).DrawClone("fourierevents");
1232 cam->GetAverageLoGainSector(sector).DrawClone("fourierevents");
1233 }
1234
1235 }
1236
1237 return;
1238 }
1239}
1240
1241
1242void MJCalibration::DisplayReferenceLines(MHCamera *cam, const Int_t what) const
1243{
1244
1245 const MGeomCam *geom = cam->GetGeometry();
1246
1247 Double_t x = geom->InheritsFrom("MGeomCamMagic") ? 397 : cam->GetNbinsX() ;
1248
1249 TLine line;
1250 line.SetLineStyle(kDashed);
1251 line.SetLineWidth(3);
1252 line.SetLineColor(kBlue);
1253
1254 TLine *l1 = NULL;
1255
1256 switch (what)
1257 {
1258 case 0:
1259 l1 = line.DrawLine(0, fRefQEInner, x, fRefQEInner);
1260 break;
1261 case 1:
1262 l1 = line.DrawLine(0, fRefConvFADC2PheInner, x, fRefConvFADC2PheInner);
1263 break;
1264 case 2:
1265 l1 = line.DrawLine(0, fRefFADC2PheInner, x, fRefFADC2PheInner );
1266 break;
1267 case 3:
1268 l1 = line.DrawLine(0, fRefArrivalTimeInner, x, fRefArrivalTimeInner );
1269 break;
1270 case 4:
1271 l1 = line.DrawLine(0, fRefArrivalTimeRmsInner, x, fRefArrivalTimeRmsInner );
1272 break;
1273 case 5:
1274 l1 = line.DrawLine(0, fRefTimeOffsetInner, x, fRefTimeOffsetInner );
1275 break;
1276 case 6:
1277 l1 = line.DrawLine(0, fRefTimeResolutionInner, x, fRefTimeResolutionInner );
1278 break;
1279 default:
1280 break;
1281 }
1282
1283 if (geom->InheritsFrom("MGeomCamMagic"))
1284 {
1285 const Double_t x2 = cam->GetNbinsX();
1286
1287 switch (what)
1288 {
1289 case 0:
1290 line.DrawLine(x2, fRefQEOuter, 398, fRefQEOuter);
1291 break;
1292 case 1:
1293 line.DrawLine(x2, fRefConvFADC2PheOuter, 398, fRefConvFADC2PheOuter );
1294 break;
1295 case 2:
1296 line.DrawLine(x2, fRefFADC2PheOuter, 398, fRefFADC2PheOuter);
1297 break;
1298 case 3:
1299 line.DrawLine(x2, fRefArrivalTimeOuter, 398, fRefArrivalTimeOuter);
1300 break;
1301 case 4:
1302 line.DrawLine(x2, fRefArrivalTimeRmsOuter, 398, fRefArrivalTimeRmsOuter);
1303 break;
1304 case 5:
1305 line.DrawLine(x2, fRefTimeOffsetOuter, 398, fRefTimeOffsetOuter);
1306 break;
1307 case 6:
1308 line.DrawLine(x2, fRefTimeResolutionOuter, 398, fRefTimeResolutionOuter);
1309 break;
1310 default:
1311 break;
1312 }
1313 }
1314
1315 TLegend *leg = new TLegend(0.6,0.85,0.9 ,0.95);
1316 leg->SetBit(kCanDelete);
1317 leg->AddEntry(l1, "Reference","l");
1318 leg->Draw();
1319}
1320
1321void MJCalibration::DisplayOutliers(TH1D *hist, const char* whatsmall, const char* whatbig) const
1322{
1323
1324 const Int_t kNotDraw = 1<<9;
1325 TF1 *f = hist->GetFunction("gaus");
1326 f->ResetBit(kNotDraw);
1327
1328 const Float_t mean = f->GetParameter(1);
1329 const Float_t lolim = mean - 4.0*f->GetParameter(2);
1330 const Float_t uplim = mean + 4.0*f->GetParameter(2);
1331 const Stat_t dead = hist->Integral(0,hist->FindBin(lolim)-1);
1332 const Stat_t noisy = hist->Integral(hist->FindBin(uplim)+1,hist->GetNbinsX()+1);
1333
1334 const Double_t max = hist->GetBinContent(hist->GetMaximumBin());
1335
1336 const Double_t minl = hist->GetBinCenter(hist->GetXaxis()->GetFirst());
1337 const Double_t maxl = hist->GetBinCenter(hist->GetXaxis()->GetLast());
1338
1339 TLatex deadtex;
1340 deadtex.SetTextSize(0.07);
1341 deadtex.DrawLatex(minl+0.015*(maxl-minl),max/1.1,
1342 Form("%3i %s pixels",(Int_t)dead,whatsmall));
1343
1344 TLatex noisytex;
1345 noisytex.SetTextSize(0.07);
1346 noisytex.DrawLatex(minl+0.015*(maxl-minl),max/1.2,
1347 Form("%3i %s pixels",(Int_t)noisy,whatbig));
1348
1349}
1350
1351void MJCalibration::FixDataCheckHist(TH1D *hist) const
1352{
1353
1354 hist->SetDirectory(NULL);
1355
1356 //
1357 // set the labels bigger
1358 //
1359 TAxis *xaxe = hist->GetXaxis();
1360 TAxis *yaxe = hist->GetYaxis();
1361
1362 xaxe->CenterTitle();
1363 yaxe->CenterTitle();
1364 xaxe->SetTitleSize(0.06);
1365 yaxe->SetTitleSize(0.06);
1366 xaxe->SetTitleOffset(0.8);
1367 yaxe->SetTitleOffset(0.85);
1368 xaxe->SetLabelSize(0.05);
1369 yaxe->SetLabelSize(0.05);
1370
1371}
1372
1373const Int_t MJCalibration::CountBadPixels ( MHCamera *cam , const Int_t what ) const
1374{
1375
1376 Int_t cnt = 0;
1377
1378 for (UInt_t pix=0; pix<cam->GetNumPixels();pix++)
1379 if ((Int_t)cam->GetPixContent(pix) == what)
1380 cnt++;
1381
1382 return cnt;
1383}
1384
1385// --------------------------------------------------------------------------
1386//
1387// Retrieve the output file written by WriteResult()
1388//
1389const char* MJCalibration::GetOutputFileName() const
1390{
1391 return Form("calib%08d.root", fSequence.GetSequence());
1392}
1393
1394// --------------------------------------------------------------------------
1395//
1396// Read the following values from resource file:
1397//
1398// ConvFADC2PheMin
1399// ConvFADC2PheMax
1400// ConvFADC2PhotMin
1401// ConvFADC2PhotMax
1402//
1403// QEMin
1404// QEMax
1405//
1406// ArrivalTimeMin
1407// ArrivalTimeMax
1408//
1409// TimeOffsetMin
1410// TimeOffsetMax
1411// TimeResolutionMin
1412// TimeResolutionMax
1413//
1414// RefConvFADC2PheInner
1415// RefConvFADC2PheOuter
1416// RefConvFADC2PhotInner
1417// RefConvFADC2PhotOuter
1418//
1419// RefQEInner
1420// RefQEOuter
1421//
1422// RefArrivalTimeInner
1423// RefArrivalTimeOuter
1424// RefArrivalTimeRmsInner
1425// RefArrivalTimeRmsOuter
1426//
1427// RefTimeOffsetInner
1428// RefTimeOffsetOuter
1429// RefTimeResolutionInner
1430// RefTimeResolutionOuter
1431//
1432void MJCalibration::ReadReferenceFile()
1433{
1434 TEnv refenv(fReferenceFile);
1435
1436 fConvFADC2PheMin = refenv.GetValue("ConvFADC2PheMin",fConvFADC2PheMin);
1437 fConvFADC2PheMax = refenv.GetValue("ConvFADC2PheMax",fConvFADC2PheMax);
1438 fConvFADC2PhotMin = refenv.GetValue("ConvFADC2PhotMin",fConvFADC2PhotMin);
1439 fConvFADC2PhotMax = refenv.GetValue("ConvFADC2PhotMax",fConvFADC2PhotMax);
1440 fQEMin = refenv.GetValue("QEMin",fQEMin);
1441 fQEMax = refenv.GetValue("QEMax",fQEMax);
1442 fArrivalTimeMin = refenv.GetValue("ArrivalTimeMin",fArrivalTimeMin);
1443 fArrivalTimeMax = refenv.GetValue("ArrivalTimeMax",fArrivalTimeMax);
1444 fTimeOffsetMin = refenv.GetValue("TimeOffsetMin",fTimeOffsetMin);
1445 fTimeOffsetMax = refenv.GetValue("TimeOffsetMax",fTimeOffsetMax);
1446 fTimeResolutionMin = refenv.GetValue("TimeResolutionMin",fTimeResolutionMin);
1447 fTimeResolutionMax = refenv.GetValue("TimeResolutionMax",fTimeResolutionMax);
1448
1449 fRefFADC2PheInner = refenv.GetValue("RefFADC2PheInner",fRefFADC2PheInner);
1450 fRefFADC2PheOuter = refenv.GetValue("RefFADC2PheOuter",fRefFADC2PheOuter);
1451 fRefConvFADC2PhotInner = refenv.GetValue("RefConvFADC2PhotInner",fRefConvFADC2PhotInner);
1452 fRefConvFADC2PhotOuter = refenv.GetValue("RefConvFADC2PhotOuter",fRefConvFADC2PhotOuter);
1453 fRefConvFADC2PheInner = refenv.GetValue("RefConvFADC2PheInner",fRefConvFADC2PheInner);
1454 fRefConvFADC2PheOuter = refenv.GetValue("RefConvFADC2PheOuter",fRefConvFADC2PheOuter);
1455 fRefQEInner = refenv.GetValue("RefQEInner",fRefQEInner);
1456 fRefQEOuter = refenv.GetValue("RefQEOuter",fRefQEOuter);
1457 fRefArrivalTimeInner = refenv.GetValue("RefArrivalTimeInner",fRefArrivalTimeInner);
1458 fRefArrivalTimeOuter = refenv.GetValue("RefArrivalTimeOuter",fRefArrivalTimeOuter);
1459 fRefArrivalTimeRmsInner = refenv.GetValue("RefArrivalTimeRmsInner",fRefArrivalTimeRmsInner);
1460 fRefArrivalTimeRmsOuter = refenv.GetValue("RefArrivalTimeRmsOuter",fRefArrivalTimeRmsOuter);
1461 fRefTimeOffsetInner = refenv.GetValue("RefTimeOffsetInner",fRefTimeOffsetInner);
1462 fRefTimeOffsetOuter = refenv.GetValue("RefTimeOffsetOuter",fRefTimeOffsetOuter);
1463 fRefTimeResolutionInner = refenv.GetValue("RefTimeResolutionInner",fRefTimeResolutionInner);
1464 fRefTimeResolutionOuter = refenv.GetValue("RefTimeResolutionOuter",fRefTimeResolutionOuter);
1465}
1466
1467// --------------------------------------------------------------------------
1468//
1469// Read the following values from resource file:
1470//
1471// MCalibrationHiLoCam
1472//
1473Bool_t MJCalibration::ReadHiLoCalibFile()
1474{
1475
1476 if (!fIsHiLoCalibration)
1477 return kTRUE;
1478
1479 TFile file(fHiLoCalibFile,"READ");
1480 if (!file.IsOpen())
1481 {
1482 *fLog << err << "ERROR - Couldn't open file " << fHiLoCalibFile << " for reading... abort." << endl;
1483 return kFALSE;
1484 }
1485
1486 MCalibrationHiLoCam hilocam;
1487 if (hilocam.Read()<=0)
1488 {
1489 *fLog << err << "Unable to read MCalibrationHiLoCam from " << fHiLoCalibFile << "... abort." << endl;
1490 return kFALSE;
1491 }
1492 if (hilocam.GetSize() < 1)
1493 {
1494 *fLog << err << "MCalibationHiLoCam is un-initialized in file " << fHiLoCalibFile << "... abort." << endl;
1495 return kFALSE;
1496 }
1497
1498 *fLog << all << "Hi-/Lo-Gain intercalibration constants read from " << fHiLoCalibFile << endl << endl;
1499
1500 if (fCalibrationCam.GetSize() < 1)
1501 fCalibrationCam.InitSize(hilocam.GetSize());
1502
1503 if (fBadPixels.GetSize() < 1)
1504 fBadPixels.InitSize(hilocam.GetSize());
1505
1506 if (fCalibrationCam.GetSize() != hilocam.GetSize())
1507 {
1508 *fLog << err << "Size mismatch MCalibationHiLoCam and MCalibrationChargeCam.. abort." << endl;
1509 return kFALSE;
1510 }
1511
1512 for (Int_t i=0;i<hilocam.GetSize();i++)
1513 {
1514 const MCalibrationHiLoPix &pix = (MCalibrationHiLoPix&)hilocam[i];
1515
1516 const Float_t ratio = pix.GetHiLoChargeRatio();
1517 const Float_t sigma = pix.GetHiLoChargeRatioSigma();
1518
1519 if (ratio < 0.)
1520 {
1521 fBadPixels[i].SetUncalibrated(MBadPixelsPix::kConversionHiLoNotValid);
1522 continue;
1523 }
1524
1525 MCalibrationChargePix &cpix = (MCalibrationChargePix&)fCalibrationCam[i];
1526
1527 cpix.SetConversionHiLo(ratio);
1528 cpix.SetConversionHiLoErr(sigma);
1529 }
1530
1531 return kTRUE;
1532}
1533
1534// --------------------------------------------------------------------------
1535//
1536// MJCalibration allows to setup several option by a resource file:
1537// MJCalibration.Display: full, datacheck, normal
1538// MJCalibration.RelTimeCalibration: yes,no
1539// MJCalibration.DataCheck: yes,no
1540// MJCalibration.Debug: yes,no
1541// MJCalibration.Intensity: yes,no
1542// MJCalibration.UseBlindPixel: yes,no
1543// MJCalibration.UsePINDiode: yes,no
1544// MJCalibration.Geometry: MGeomCamMagic, MGeomCamECO1000
1545//
1546// Name of a file containing reference values (see ReadReferenceFile)
1547// Prefix.ReferenceFile: filename
1548// (see ReadReferenceFile)
1549//
1550// For more details see the class description and the corresponding Getters
1551//
1552Bool_t MJCalibration::CheckEnvLocal()
1553{
1554 TString dis = GetEnv("Display", "");
1555 if (dis.BeginsWith("Full", TString::kIgnoreCase))
1556 SetFullDisplay();
1557 if (dis.BeginsWith("DataCheck", TString::kIgnoreCase))
1558 SetDataCheckDisplay();
1559 if (dis.BeginsWith("Normal", TString::kIgnoreCase))
1560 SetNormalDisplay();
1561
1562 if (!MJCalib::CheckEnvLocal())
1563 return kFALSE;
1564
1565 SetRelTimeCalibration(GetEnv("RelTimeCalibration", IsRelTimes()));
1566 SetIntensity(GetEnv("IntensityCalibration", IsIntensity()));
1567 SetDebug(GetEnv("Debug", IsDebug()));
1568
1569 SetUseBlindPixel(GetEnv("UseBlindPixel", IsUseBlindPixel()));
1570 SetUsePINDiode(GetEnv("UsePINDiode", IsUsePINDiode()));
1571 SetGeometry(GetEnv("Geometry", fGeometry));
1572
1573 fReferenceFile = GetEnv("ReferenceFile",fReferenceFile.Data());
1574 ReadReferenceFile();
1575
1576 fHiLoCalibFile = GetEnv("HiLoCalibFile",fHiLoCalibFile.Data());
1577
1578 if (IsUseMC() && !fHiLoCalibFile.EndsWith("_mc.root"))
1579 {
1580 if (!fHiLoCalibFile.EndsWith(".root"))
1581 {
1582 *fLog << warn << "WARNING - Hi-/Lo-Gain intercalibration file ";
1583 *fLog << fHiLoCalibFile << " has not .root as extension..." << endl;
1584 }
1585 else
1586 fHiLoCalibFile.Insert(fHiLoCalibFile.Length()-5, "_mc");
1587 }
1588
1589 return ReadHiLoCalibFile();
1590}
1591
1592void MJCalibration::InitBlindPixel(MExtractBlindPixel &blindext,
1593 MHCalibrationChargeBlindCam &blindcam)
1594{
1595
1596 Int_t run = fSequence.GetLastRun();
1597
1598 //
1599 // Initialize the blind pixel. Unfortunately, there is a hardware difference
1600 // in the first blind pixel until run "gkSecondBlindPixelInstallation" and the
1601 // later setup. The first needs to use a filter because of the length of
1602 // spurious NSB photon signals. The latter get better along extracting the amplitude
1603 // from a small window.
1604 //
1605 if (run < gkSecondBlindPixelInstallation)
1606 {
1607 MCalibrationBlindCamOneOldStyle blindresults;
1608 if (IsIntensity())
1609 blindresults.Copy(*fIntensBlindCam.GetCam());
1610 else
1611 blindresults.Copy(fCalibrationBlindCam);
1612
1613 blindext.SetExtractionType(MExtractBlindPixel::kIntegral);
1614 blindext.SetExtractionType(MExtractBlindPixel::kFilter);
1615 blindext.SetRange(10,19,0,6);
1616 blindext.SetNSBFilterLimit(70);
1617 }
1618 else if (run < gkThirdBlindPixelInstallation)
1619 {
1620
1621 MCalibrationBlindCamTwoNewStyle blindresults;
1622
1623 if (IsIntensity())
1624 blindresults.Copy(*fIntensBlindCam.GetCam());
1625 else
1626 blindresults.Copy(fCalibrationBlindCam);
1627
1628 blindext.SetNumBlindPixels(blindresults.GetSize());
1629 for (Int_t i=0;i<blindresults.GetSize();i++)
1630 blindext.SetBlindPixelIdx(blindresults[i].GetPixId(),i);
1631
1632 blindext.SetExtractionType(MExtractBlindPixel::kAmplitude);
1633 blindext.SetExtractionType(MExtractBlindPixel::kFilter);
1634 blindext.SetRange(5,8,0,2);
1635 blindext.SetNSBFilterLimit(38);
1636
1637 }
1638 else
1639 {
1640
1641 MCalibrationBlindCamThreeNewStyle blindresults;
1642
1643 if (IsIntensity())
1644 blindresults.Copy(*fIntensBlindCam.GetCam());
1645 else
1646 blindresults.Copy(fCalibrationBlindCam);
1647
1648 blindext.SetNumBlindPixels(blindresults.GetSize());
1649
1650 for (Int_t i=0;i<blindresults.GetSize();i++)
1651 blindext.SetBlindPixelIdx(blindresults[i].GetPixId(),i);
1652
1653 blindext.SetExtractionType(MExtractBlindPixel::kAmplitude);
1654 blindext.SetExtractionType(MExtractBlindPixel::kFilter);
1655 blindext.SetDataType(MExtractBlindPixel::kRawEvt2);
1656 blindext.SetRange(5,8,0,2);
1657 blindext.SetNSBFilterLimit(38);
1658
1659 }
1660
1661}
1662
1663// --------------------------------------------------------------------------
1664//
1665// Execute the task list and the eventloop:
1666//
1667// - Check the colour of the files in fRuns (FindColor()), otherwise return
1668// - Check for consistency between run numbers and number of files
1669// - Add fRuns to MReadMarsFile
1670// - Put into MParList:
1671// 1) MPedestalCam (pedcam)
1672// 2) MCalibrationQECam (fQECam)
1673// 3) MCalibrationChargeCam (fCalibrationCam)
1674// 4) MCalibrationRelTimeCam (fRelTimeCam) (only if flag IsRelTimes() is chosen)
1675// 5) MBadPixelsCam (fBadPixels)
1676// 6) MCalibrationChargePINDiode
1677// 7) MCalibrationBlindPix
1678// - Put into the MTaskList:
1679// 1) MReadMarsFile
1680// 2) MBadPixelsMerge
1681// 3) MGeomApply
1682// 4) MExtractor
1683// 5) MExtractPINDiode
1684// 6) MExtractBlindPixel
1685// 7) MExtractTime (only if flag IsRelTimes() is chosen)
1686// 8) MContinue(MFCosmics)
1687// 9) MFillH("MHCalibrationChargePINDiode", "MExtractedSignalPINDiode", "FillPINDiode")
1688// 10) MFillH("MHCalibrationChargeBlindCam", "MExtractedSignalBlindPixel", "FillBlindCam")
1689// 11) MFillH("MHCalibrationChargeCam", "MExtractedSignalCam", "FillChargeCam")
1690// 12) MFillH("MHCalibrationChargeCam", "MExtractedSignalCam", "FillRelTime")
1691// 13) MCalibrationChargeCalc
1692// 14) MFillH("MHCalibrationRelTimeCam", "MArrivalTimeCam") (only if flag IsRelTimes() is chosen)
1693// 15) MCalibrationRelTimeCalc
1694// - Execute MEvtLoop
1695// - DisplayResult()
1696// - WriteResult()
1697//
1698Bool_t MJCalibration::Process(MPedestalCam &pedcam)
1699{
1700 if (!fSequence.IsValid())
1701 {
1702 *fLog << err << "ERROR - Sequence invalid..." << endl;
1703 return kFALSE;
1704 }
1705
1706 *fLog << inf;
1707 fLog->Separator(GetDescriptor());
1708 *fLog << "Calculate calibration constants from Sequence #";
1709 *fLog << fSequence.GetSequence() << endl << endl;
1710
1711 // --------------------------------------------------------------------------------
1712
1713 if (!CheckEnv())
1714 return kFALSE;
1715
1716 // --------------------------------------------------------------------------------
1717
1718 // Setup Tasklist
1719 MParList plist;
1720 MTaskList tlist;
1721 plist.AddToList(&tlist);
1722 plist.AddToList(this); // take care of fDisplay!
1723
1724 MDirIter iter;
1725 const Int_t n0 = fSequence.SetupCalRuns(iter, fPathData, IsUseRawData());
1726 const Int_t n1 = fSequence.GetNumCalRuns();
1727 if (n0==0)
1728 {
1729 *fLog << err << "ERROR - No input files of sequence found!" << endl;
1730 return kFALSE;
1731 }
1732 if (n0!=n1)
1733 {
1734 *fLog << err << "ERROR - Number of files found ("
1735 << n0 << ") doesn't match number of files in sequence ("
1736 << n1 << ")" << endl;
1737 if (fLog->GetDebugLevel()>4)
1738 {
1739 *fLog << dbg << "Files which are searched:" << endl;
1740 iter.Print();
1741 }
1742 return kFALSE;
1743 }
1744
1745 //
1746 // Input containers
1747 //
1748 pedcam.SetName("MPedestalCam"); // MPedestalFundamental
1749 plist.AddToList(&pedcam);
1750 plist.AddToList(&fBadPixels);
1751
1752 //
1753 // Calibration Results containers
1754 //
1755 if (IsIntensity())
1756 {
1757 plist.AddToList(&fIntensQECam);
1758 plist.AddToList(&fIntensCalibCam);
1759 // plist.AddToList(&fIntensCalibrationPINDiode);
1760 plist.AddToList(&fIntensRelTimeCam);
1761 plist.AddToList(&fIntensBadCam);
1762 if (IsUseBlindPixel())
1763 plist.AddToList(&fIntensBlindCam);
1764 }
1765 else
1766 {
1767 plist.AddToList(&fQECam);
1768 plist.AddToList(&fCalibrationCam);
1769 plist.AddToList(&fRelTimeCam);
1770 if (IsUseBlindPixel())
1771 plist.AddToList(&fCalibrationBlindCam);
1772 if (IsUsePINDiode())
1773 plist.AddToList(&fCalibrationPINDiode);
1774 }
1775
1776 //
1777 // Initialize two histogram containers which could be modified in this class
1778 //
1779 MHCalibrationRelTimeCam reltimecam;
1780 MHCalibrationChargeCam chargecam;
1781 MHCalibrationChargeBlindCam blindcam;
1782 plist.AddToList(&chargecam);
1783
1784 if (IsUseBlindPixel())
1785 plist.AddToList(&blindcam);
1786 if (IsRelTimes())
1787 plist.AddToList(&reltimecam);
1788 //
1789 // Data Reading tasks
1790 //
1791 MReadMarsFile read("Events");
1792 MRawFileRead rawread(NULL);
1793
1794 if (IsUseRawData())
1795 {
1796 rawread.AddFiles(iter);
1797 tlist.AddToList(&rawread);
1798 }
1799 else
1800 {
1801 read.DisableAutoScheme();
1802 read.AddFiles(iter);
1803 tlist.AddToList(&read);
1804 }
1805
1806 //
1807 // Other Tasks
1808 //
1809
1810 // Set the default for data version earlier than 5, where no valid
1811 // trigger pattern exists. There should not be pin diode or other
1812 // types of events inside the calibration files which should be skipped,
1813 // anyway. So we set the default such that the MContinue ccalib
1814 // will never be executed.
1815 MTriggerPatternDecode trgpat;
1816 MFTriggerPattern fcalib("CalibFilter");
1817 fcalib.SetDefault(kFALSE);
1818 fcalib.DenyCalibration(MFTriggerPattern::kPrescaled);
1819
1820 MContinue ccalib(&fcalib,"ContTrigPattern");
1821
1822 MCalibrationPatternDecode decode;
1823 MGeomApply apply;
1824 apply.SetGeometry(fGeometry);
1825
1826 MBadPixelsMerge merge(&fBadPixels);
1827 MExtractPINDiode pinext;
1828 MExtractBlindPixel blindext;
1829
1830 if (IsUseBlindPixel())
1831 InitBlindPixel(blindext, blindcam);
1832
1833 MExtractSlidingWindow extract2;
1834 MExtractTimeHighestIntegral timehigh;
1835 MCalibrationChargeCalc calcalc;
1836 MCalibrationRelTimeCalc timecalc;
1837 calcalc.SetOutputFile("");
1838 timecalc.SetOutputFile("");
1839
1840 if (IsDebug())
1841 {
1842 chargecam.SetDebug();
1843 calcalc.SetDebug();
1844 }
1845
1846 //
1847 // Calibration histogramming
1848 //
1849 MFillH fillpin("MHCalibrationChargePINDiode", "MExtractedSignalPINDiode", "FillPINDiode");
1850 MFillH fillbnd("MHCalibrationChargeBlindCam", "MExtractedSignalBlindPixel", "FillBlindCam");
1851 MFillH fillcam("MHCalibrationChargeCam", "MExtractedSignalCam", "FillChargeCam");
1852 MFillH filltme("MHCalibrationRelTimeCam", "MArrivalTimeCam", "FillRelTime");
1853 fillpin.SetBit(MFillH::kDoNotDisplay);
1854 fillbnd.SetBit(MFillH::kDoNotDisplay);
1855 fillcam.SetBit(MFillH::kDoNotDisplay);
1856 filltme.SetBit(MFillH::kDoNotDisplay);
1857
1858 //
1859 // Set default extractors in case, none has been set...
1860 //
1861 if (!fExtractor)
1862 fExtractor = &extract2;
1863 if (!fTimeExtractor)
1864 fTimeExtractor = &timehigh;
1865
1866 const Bool_t istimecharge = fExtractor->InheritsFrom("MExtractTimeAndCharge");
1867 //
1868 // Look if the extractor is a pure charge or also a time extractor
1869 //
1870 if (istimecharge)
1871 {
1872 if (fExtractorCam.GetSize() == pedcam.GetSize())
1873 calcalc.SetPedestals(&fExtractorCam);
1874 else
1875 {
1876 *fLog << err << GetDescriptor() << "ERROR - ";
1877 *fLog << "Used Extractor derives from MExtractTimeAndCharge, " << endl;
1878 *fLog << "but MExtractorCam size " << fExtractorCam.GetSize() << " ";
1879 *fLog << "mismatch pedcam size " << pedcam.GetSize() << "! " << endl;
1880 return kFALSE;
1881 }
1882 }
1883
1884 //
1885 // Setup more tasks and tasklist
1886 //
1887 MTaskEnv taskenv("ExtractSignal");
1888 taskenv.SetDefault(fExtractor);
1889
1890 tlist.AddToList(&trgpat);
1891 tlist.AddToList(&ccalib);
1892 tlist.AddToList(&decode);
1893 tlist.AddToList(&merge);
1894 tlist.AddToList(&apply);
1895
1896 MPedCalcPedRun pedcalc;
1897 pedcalc.SetExtractWindow(fExtractor->GetHiGainFirst(),TMath::Nint(fExtractor->GetNumHiGainSamples()));
1898
1899 if (IsIntensity())
1900 tlist.AddToList(&pedcalc);
1901
1902 MCalibColorSet colorset;
1903 tlist.AddToList(&colorset);
1904
1905 tlist.AddToList(&taskenv);
1906
1907 if (IsUsePINDiode())
1908 tlist.AddToList(&pinext);
1909 if (IsUseBlindPixel())
1910 tlist.AddToList(&blindext);
1911
1912 MTaskEnv taskenv2("ExtractTime");
1913 if (!istimecharge)
1914 {
1915 taskenv2.SetDefault(fTimeExtractor);
1916
1917 if (IsRelTimes())
1918 tlist.AddToList(&taskenv2);
1919 }
1920
1921 //
1922 // Apply a filter against cosmics
1923 // (will have to be needed in the future
1924 // when the calibration hardware-trigger is working)
1925 //
1926 MFCosmics cosmics;
1927 cosmics.SetMaxEmptyPixels(0.05);
1928 cosmics.SetMaxAcceptedFraction(0.5); // max=0.5 cosmics
1929
1930 MContinue cont(&cosmics, "ContCosmics");
1931 tlist.AddToList(&cont);
1932
1933 MCalibColorSteer steer;
1934 if (IsIntensity())
1935 tlist.AddToList(&steer);
1936
1937 tlist.AddToList(&fillcam);
1938
1939 if (IsRelTimes())
1940 {
1941 tlist.AddToList(&filltme);
1942 tlist.AddToList(&timecalc);
1943 }
1944
1945 if (IsUseBlindPixel())
1946 tlist.AddToList(&fillbnd);
1947 if (IsUsePINDiode())
1948 tlist.AddToList(&fillpin);
1949
1950 tlist.AddToList(&calcalc);
1951
1952 // Create and setup the eventloop
1953 MEvtLoop evtloop(fName);
1954 evtloop.SetParList(&plist);
1955 evtloop.SetDisplay(fDisplay);
1956 evtloop.SetLogStream(fLog);
1957 if (!SetupEnv(evtloop))
1958 return kFALSE;
1959
1960 if (!taskenv.GetTask() && !taskenv2.GetTask())
1961 {
1962 *fLog << err << "ERROR - Neither ExtractSignal nor ExtractTime initialized or both '<dummy>'." << endl;
1963 return kFALSE;
1964 }
1965
1966 if (!WriteTasks(taskenv.GetTask(), istimecharge ? 0 : taskenv2.GetTask()))
1967 return kFALSE;
1968
1969 // Execute first analysis
1970 const Bool_t rc = evtloop.Eventloop();
1971
1972 if (!fCalibrationPINDiode.IsValid())
1973 SetUsePINDiode(kFALSE);
1974
1975 const Int_t numexec = IsUseRawData() ? rawread.GetNumExecutions() : read.GetNumExecutions();
1976 if (numexec>0)
1977 {
1978 DisplayResult(plist);
1979 if (!WriteResult(plist))
1980 return kFALSE;
1981 }
1982
1983 if (!rc)
1984 {
1985 *fLog << err << GetDescriptor() << ": Failed." << endl;
1986 return kFALSE;
1987 }
1988
1989 // --------------------------------------------------------------------------------
1990
1991 if (fIsPixelCheck)
1992 {
1993 MHCalibrationChargeCam *hcam = (MHCalibrationChargeCam*)plist.FindObject("MHCalibrationChargeCam");
1994 MHCalibrationChargePix &pix1 = (MHCalibrationChargePix&)(*hcam)[fCheckedPixId];
1995 pix1.DrawClone("");
1996
1997 MHCalibrationChargePix &pix2 = (MHCalibrationChargePix&)(*hcam)(fCheckedPixId);
1998 pix2.DrawClone("");
1999
2000 if (IsRelTimes())
2001 {
2002 MHCalibrationRelTimeCam *hccam = (MHCalibrationRelTimeCam*)plist.FindObject("MHCalibrationRelTimeCam");
2003 MHCalibrationPix &pix11 = (*hccam)[fCheckedPixId];
2004 pix11.DrawClone("");
2005 MHCalibrationPix &pix12 = (*hccam)(fCheckedPixId);
2006 pix12.DrawClone("");
2007 }
2008 }
2009
2010 *fLog << all << GetDescriptor() << ": Done." << endl;
2011
2012 return kTRUE;
2013}
2014
2015/*
2016Bool_t MJCalibration::WriteEventloop(MEvtLoop &evtloop) const
2017{
2018 if (IsNoStorage())
2019 return kTRUE;
2020
2021 if (fPathOut.IsNull())
2022 return kTRUE;
2023
2024 const TString oname(GetOutputFile());
2025
2026 *fLog << inf << "Writing to file: " << oname << endl;
2027
2028 TFile file(oname, fOverwrite?"RECREATE":"NEW", "File created by MJCalibration", 9);
2029 if (!file.IsOpen())
2030 {
2031 *fLog << err << "ERROR - Couldn't open file " << oname << " for writing..." << endl;
2032 return kFALSE;
2033 }
2034
2035 if (evtloop.Write(fName)<=0)
2036 {
2037 *fLog << err << "Unable to write MEvtloop to " << oname << endl;
2038 return kFALSE;
2039 }
2040
2041 return kTRUE;
2042}
2043*/
2044
2045Bool_t MJCalibration::WriteTasks(MTask *t1, MTask *t2) const
2046{
2047 if (IsNoStorage())
2048 return kTRUE;
2049
2050 TObjArray cont;
2051 if (t1)
2052 cont.Add(t1);
2053 if (t2)
2054 cont.Add(t2);
2055
2056 return WriteContainer(cont, GetOutputFileName(), fOverwrite?"RECREATE":"NEW");
2057}
2058
2059// --------------------------------------------------------------------------
2060//
2061// Write the result into the output file GetOutputFile(), if fOutputPath exists.
2062//
2063// The following containers are written:
2064// - MStatusDisplay
2065// - MCalibrationChargeCam or MCalibrationIntensityChargeCam
2066// - MCalibrationBlindCam or MCalibrationIntensityBlindCam
2067// - MCalibrationQECam or MCalibrationIntensityQECam
2068// - MCalibrationChargePINDiode
2069// - MBadPixelsCam
2070// If the flag kRelTimes is set, then also:
2071// - MCalibrationRelTimeCam or MCalibrationIntensityRelTimeCam
2072//
2073Bool_t MJCalibration::WriteResult(MParList &plist)
2074{
2075 if (IsNoStorage())
2076 return kTRUE;
2077
2078 TObjArray cont;
2079
2080 if (IsIntensity())
2081 {
2082 cont.Add(&fIntensBadCam);
2083 cont.Add(&fIntensCalibCam);
2084 cont.Add(&fIntensQECam);
2085 cont.Add(&fIntensBlindCam);
2086 }
2087 else
2088 {
2089 cont.Add(&fBadPixels);
2090 cont.Add(&fCalibrationCam);
2091 cont.Add(&fQECam);
2092 cont.Add(&fCalibrationBlindCam);
2093 }
2094 cont.Add(&fCalibrationPINDiode);
2095
2096 //if (IsRelTimes())
2097 cont.Add(IsIntensity() ? (TObject*)&fIntensRelTimeCam : (TObject*)&fRelTimeCam);
2098
2099 if (fExtractorCam.GetSize() != 0)
2100 cont.Add(&fExtractorCam);
2101
2102 TObject *pedcam = plist.FindObject("MPedestalCam");
2103 if (!pedcam)
2104 *fLog << warn << " - WARNING - MPedestalCam (fundamental)... not found for writing!" << endl;
2105 else
2106 cont.Add(pedcam);
2107
2108 TObject *geom = plist.FindObject("MGeomCam");
2109 if (!geom)
2110 *fLog << warn << " - WARNING - MGeomCam... not found for writing!" << endl;
2111 else
2112 cont.Add(geom);
2113
2114 if (IsHistsStorage())
2115 {
2116 cont.Add(plist.FindObject("MHCalibrationChargeCam"));
2117 cont.Add(plist.FindObject("MHCalibrationChargeBlindCam"));
2118 cont.Add(plist.FindObject("MHCalibrationChargePINDiode"));
2119 if (IsRelTimes())
2120 cont.Add(plist.FindObject("MHCalibrationRelTimeCam"));
2121 }
2122
2123 return WriteContainer(cont, GetOutputFileName(), "UPDATE");
2124}
2125
2126void MJCalibration::DisplayDoubleProject(MHCamera *cam, const char* whatsmall, const char* whatbig) const
2127{
2128
2129 TArrayI inner(1);
2130 inner[0] = 0;
2131
2132 TArrayI outer(1);
2133 outer[0] = 1;
2134
2135 TArrayI s1(3);
2136 s1[0] = 6;
2137 s1[1] = 1;
2138 s1[2] = 2;
2139
2140 TArrayI s2(3);
2141 s2[0] = 3;
2142 s2[1] = 4;
2143 s2[2] = 5;
2144
2145 TVirtualPad *pad = gPad;
2146 pad->Divide(2,1);
2147
2148 TH1D *inout[2];
2149
2150 for (int i=0; i<2; i++)
2151 {
2152 pad->cd(i+1);
2153 gPad->SetBorderMode(0);
2154 gPad->SetTicks();
2155
2156 inout[i] = cam->ProjectionS(TArrayI(), TArrayI(1,&i), i==0 ? "Inner" : "Outer");
2157 FixDataCheckHist(inout[i]);
2158 inout[i]->SetTitle(Form("%s %s",cam->GetTitle(),i==0 ? "Inner" : "Outer"));
2159 inout[i]->SetDirectory(NULL);
2160 inout[i]->SetLineColor(kRed+i);
2161 inout[i]->SetBit(kCanDelete);
2162 inout[i]->Draw();
2163 //
2164 // Display the outliers as dead and noisy pixels
2165 //
2166 if (!inout[i]->Fit("gaus","0Q"))
2167 DisplayOutliers(inout[i],whatsmall,whatbig);
2168
2169 gPad->Modified();
2170 gPad->Update();
2171 TPaveStats *st = (TPaveStats*)inout[i]->GetListOfFunctions()->FindObject("stats");
2172 st->SetY1NDC(0.6);
2173 st->SetY2NDC(0.9);
2174 st->SetX1NDC(0.55);
2175 st->SetX2NDC(0.99);
2176 gPad->Modified();
2177 gPad->Update();
2178
2179 TLegend *leg2 = new TLegend(0.55,0.4,0.99,0.6);
2180
2181 //
2182 // Display the two half of the camera separately
2183 //
2184 TH1D *half[2];
2185 half[0] = cam->ProjectionS(s1, TArrayI(1,&i), "Sector 6-1-2");
2186 half[1] = cam->ProjectionS(s2, TArrayI(1,&i), "Sector 3-4-5");
2187
2188 for (int j=0; j<2; j++)
2189 {
2190 half[j]->SetLineColor(kRed+i+2*j+1);
2191 half[j]->SetDirectory(NULL);
2192 half[j]->SetBit(kCanDelete);
2193 half[j]->Draw("same");
2194 leg2->AddEntry(half[j], half[j]->GetName(), "l");
2195 }
2196 leg2->Draw();
2197 }
2198}
Note: See TracBrowser for help on using the repository browser.