source: trunk/MagicSoft/Mars/macros/calibration.C@ 5697

Last change on this file since 5697 was 5683, checked in by gaug, 20 years ago
*** empty log message ***
File size: 18.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): Markus Gaug, 11/2003 <mailto:markus@ifae.es>
19!
20! Copyright: MAGIC Software Development, 2000-2004
21!
22!
23\* ======================================================================== */
24/////////////////////////////////////////////////////////////////////////////
25//
26// calibration.C
27//
28// Needs as arguments the run number of a calibration file ("*_C_*.root") and
29// the run number of the corresponding pedestal file ("*_P_*.root").
30//
31// The TString inpath has to be set correctly.
32//
33// The macro searches for the pulser colour which corresponds to the calibration
34// run number. If the run number is smaller than 20000, pulser colour "CT1"
35// is assumed, otherwise, it searches for the strings "green", "blue", "uv" or
36// "ct1" in the filenames. If no colour or multiple colours are found, the
37// execution is aborted.
38//
39// The container MBadPixelsCam is created and followed during the execution of the
40// rest of the macro.
41//
42// A first loop over the pedestal file is performed using the class MJPedestal
43//
44// The container MCalibrationQECam is created and followed during the execution of the
45// rest of the macro.
46//
47// A loop over the calibration files is performed using the class MJCalibration.
48// The results are displayed using the MJCalibration::SetNormalDisplay() facility,
49// but other displays can easily be uncommented.
50// The call to MJCalibration skips the relative time calibration, which can be
51// uncommented as well.
52//
53// Last, a third loop is performed over the calibration file again in order to
54// "calibrate" it and test the resulting outcome.
55//
56//////////////////////////////////////////////////////////////////////////////////////////
57#include "getExtractor.C"
58
59#include "MJPedestal.h"
60#include "MJCalibration.h"
61#include "MJExtractCalibTest.h"
62#include "MJCalibrateSignalFromOutside.h"
63#include "MRunIter.h"
64#include "MStatusDisplay.h"
65#include "MCalibrationQECamMagic.h"
66#include "MCalibrationQECam.h"
67#include "MBadPixelsCam.h"
68#include "MArgs.h"
69#include "MArray.h"
70#include "MParContainer.h"
71#include "MGeomCamMagic.h"
72
73#include "TStyle.h"
74#include "TObject.h"
75#include "TObjectTable.h"
76#include "TCanvas.h"
77#include "TPad.h"
78#include "TH1.h"
79#include "TPaveStats.h"
80
81using namespace std;
82
83static TString outpath = "./";
84static TString inpath = "/home/rootdata/Calib/2004_09_22";
85//static TString badfile = "";
86static TString badfile = "badpixels_only0_388_559.dat";
87//
88// the default pedestal run for the calibration
89//
90static const Int_t pedrun = 38995;
91//
92// the default start calibration run
93//
94static const Int_t calrun1 = 38997;
95//
96// the default last calibration run (if 0, only one run is taken, otherwise consecutive runs
97// between calrun1 and calrun2)
98//
99static const Int_t calrun2 = 0;
100//
101// the default start data run
102//
103static const Int_t datrun1 = 39900;
104//
105// the default last calibration run (if 0, only one run is taken, otherwise consecutive runs
106// between calrun1 and calrun2)
107//
108static const Int_t datrun2 = 0;
109//
110// A switch to output debugging information about Objects use
111//
112static Bool_t debug = kFALSE;
113//
114// A switch to use the Blind Pixel
115//
116static Bool_t blindpix = kTRUE;
117//
118// A switch to use the PIN Diode
119//
120static Bool_t pindiode = kTRUE;
121//
122// Tell if you want to use the display:
123//
124static Bool_t useDisplay = kTRUE;
125//
126// Tell if you want to test the result afterwards
127//
128static Bool_t useTest = kFALSE;
129//
130// Tell if you want to test the intensity calibration
131//
132static Bool_t useIntensity = kFALSE;
133//
134// Tell if you want to store and read the F0 and F1- files
135//
136static Bool_t usestorage = kTRUE;
137//
138// Tell which extractor you want to use. The flags are counted according
139// to the extractor-TDAS
140//
141static Int_t extractorflag = 33;
142//
143Int_t calibration(const UInt_t extflag=extractorflag, const Int_t prun=pedrun,
144 const Int_t crun1=calrun1, const Int_t crun2=calrun2,
145 const Int_t drun1=datrun1, const Int_t drun2=datrun2)
146{
147
148 MExtractor *extractor = getExtractor(extflag==33 ? 32 : extflag);
149
150 if (!extractor)
151 return 99;
152
153 extractor->SetName(Form("%s_Run_%05d",extractor->GetName(),prun));
154 const Bool_t timeandcharge = extractor->InheritsFrom("MExtractTimeAndCharge");
155
156 gStyle->SetOptStat(1111);
157 gStyle->SetOptFit();
158 gStyle->SetTitleSize(0.35,"u");
159 gStyle->SetTitleFontSize(0.9);
160 gStyle->SetTitleH(0.12);
161 gStyle->SetTitleW(0.95);
162 gStyle->SetLineWidth(1);
163
164 if (debug)
165 TObject::SetObjectStat(kTRUE);
166
167 MRunIter pruns;
168 MRunIter cruns;
169
170 pruns.AddRun(prun,inpath);
171
172 if (crun2==0)
173 cruns.AddRun(crun1,inpath);
174 else
175 cruns.AddRuns(crun1,crun2,inpath);
176
177
178 MStatusDisplay *display = NULL;
179
180 if (useDisplay)
181 {
182 display = new MStatusDisplay;
183 display->SetUpdateTime(3000);
184 display->Resize(850,700);
185 }
186
187 /*****************************************/
188 /* FIRST LOOP: PURE PEDESTAL COMPUTATION */
189 /*****************************************/
190 //
191 // Hand over to the jobs a QE Cam with Cornings initialized
192 //
193 MGeomCamMagic geomcam;
194 MCalibrationQECamMagic qecam;
195 MBadPixelsCam badcam;
196 badcam.InitSize(geomcam.GetNumPixels());
197 //
198 // If you want to exclude pixels from the beginning, read
199 // an ascii-file with the corr. pixel numbers (see MBadPixelsCam)
200 //
201 if (!badfile.IsNull())
202 {
203 ifstream f(badfile.Data());
204 badcam.AsciiRead((istream&)f);
205 f.close();
206 }
207
208 MJPedestal pedloop1;
209 pedloop1.SetNoStorage();
210 pedloop1.SetEnvDebug(debug);
211 pedloop1.SetExtractor(extractor);
212 pedloop1.SetInput(&pruns);
213 pedloop1.SetPathOut(outpath.Data());
214 if (useDisplay)
215 {
216 pedloop1.SetDisplay(display);
217 pedloop1.SetDataCheckDisplay();
218 }
219 pedloop1.SetBadPixels(badcam);
220
221 if (!pedloop1.Process())
222 return 1;
223
224 /****************************************/
225 /* SECOND LOOP: CALIBRATION COMPUTATION */
226 /****************************************/
227
228 MJPedestal pedloop2;
229 MJCalibration calloop;
230
231 if (timeandcharge)
232 {
233 /***********************************************************/
234 /* NEEDED FOR SECOND LOOP: EXTRACTOR RESOLUTION COMPUTATION */
235 /***********************************************************/
236
237 pedloop2.SetUseData();
238 pedloop2.SetNoStorage();
239 pedloop2.SetEnvDebug(debug);
240 pedloop2.SetExtractor(extractor);
241 pedloop2.SetExtractorResolution();
242 pedloop2.SetPedestals(pedloop1.GetPedestalCam());
243 pedloop2.SetInput(&pruns);
244 pedloop2.SetPathOut(outpath.Data());
245 if (useDisplay)
246 {
247 pedloop2.SetDisplay(display);
248 pedloop2.SetDataCheckDisplay();
249 }
250 pedloop2.SetBadPixels(badcam);
251
252 if (!pedloop2.Process())
253 return 1;
254
255 calloop.SetExtractorCam(pedloop2.GetPedestalCam());
256 }
257
258 MPedestalCam &pedcam = pedloop1.GetPedestalCam();
259
260 if (debug)
261 calloop.SetDebug();
262 calloop.SetEnvDebug(debug);
263 if (useIntensity)
264 calloop.SetIntensity();
265 // calloop.SetHistsStorage();
266 calloop.SetNoStorage(!usestorage);
267 calloop.SetRelTimeCalibration(kTRUE);
268 //
269 // If you want to set a colour explicitely from outside (not recommanded!)
270 // calloop.SetColor(MCalibrationCam::kUV);
271 //
272 // If you want to run the data-check on RAW DATA!!!, choose:
273 // calloop.SetDataCheck();
274 //
275 // If you want to see the data-check plots only, choose:
276 calloop.SetDataCheckDisplay();
277 //calloop.SetNormalDisplay();
278 //
279 // For everything, you have ever dreamed of, choose:
280 // calloop.SetFullDisplay();
281
282 //
283 // If you want to calibrate the times as well, choose:
284 //
285 calloop.SetExtractor(extractor);
286 calloop.SetInput(&cruns);
287 calloop.SetPathOut(outpath.Data());
288 if (useDisplay)
289 calloop.SetDisplay(display);
290 calloop.SetUseBlindPixel(blindpix);
291 calloop.SetUsePINDiode(pindiode);
292 calloop.SetQECam(qecam);
293 calloop.SetBadPixels(badcam);
294
295 if (!calloop.Process(pedcam))
296 return 2;
297
298 // return 0;
299
300 //
301 // The next lines are the use the Print() function and have
302 // all the results as ascii-tables:
303 //
304 if (debug)
305 {
306 MCalibrationQECam &nqecam = calloop.GetQECam();
307 MBadPixelsCam &badbad = calloop.GetBadPixels();
308 MCalibrationChargeCam &chargecam = calloop.GetCalibrationCam();
309 chargecam.Print();
310 nqecam.Print();
311 badbad.Print();
312 }
313
314 /********************************************************************/
315 /* THIRD LOOP: APPLY CALIBRATION TO THE CALIBRATION FILES FOR TESTS */
316 /********************************************************************/
317
318 if (useTest)
319 {
320
321 MJExtractCalibTest testloop;
322
323 // If you want to see the data-check plots only, choose:
324 testloop.SetDataCheckDisplay();
325
326 testloop.SetExtractor(extractor);
327 testloop.SetInput(&cruns);
328 testloop.SetPathOut(outpath);
329 if (useDisplay)
330 testloop.SetDisplay(display);
331 testloop.SetBadPixels(calloop.GetBadPixels());
332
333 if (!testloop.ProcessD(pedloop1.GetPedestalCam(),calloop.GetCalibrationCam(),calloop.GetQECam()))
334 return 3;
335
336 }
337
338 if (drun1 == 0)
339 return 4;
340
341 MRunIter druns;
342
343 if (drun2==0)
344 druns.AddRun(drun1,inpath);
345 else
346 druns.AddRuns(drun1,drun2,inpath);
347
348
349 /********************************************************************/
350 /* FOURTH LOOP: APPLY CALIBRATION TO THE PEDESTAL FILES */
351 /********************************************************************/
352
353 if (extflag == 33)
354 {
355 delete extractor;
356 extractor = getExtractor(28);
357 }
358
359 MJCalibrateSignalFromOutside calibloop;
360
361 calibloop.SetExtractor(extractor);
362 calibloop.SetInput(&druns);
363 // calibloop.SetOutputPath(outpath);
364 if (useDisplay)
365 calibloop.SetDisplay(display);
366 calibloop.SetBadPixels(calloop.GetBadPixels());
367 calibloop.SetNoStorage(!usestorage);
368
369 if (!calibloop.ProcessFile(pedloop1.GetPedestalCam(),timeandcharge ? pedloop2.GetPedestalCam() : pedloop1.GetPedestalCam(), calloop.GetCalibrationCam(),calloop.GetQECam(), calloop.GetRelTimeCam()))
370 return 5;
371
372 if (debug)
373 TObject::SetObjectStat(kFALSE);
374
375 //
376 // Debugging at the end:
377 //
378 if (debug)
379 gObjectTable->Print();
380
381
382 return 0;
383}
384
385static void Usage()
386{
387 gLog << endl;
388 gLog << "Usage:" << endl;
389 gLog << endl;
390 gLog << " calibration [ped.run nr.] [first cal.run nr.] [last cal.run nr.] [first dat.run nr.] [last dat.run nr.]" << endl ;
391 gLog << endl;
392 gLog << " ped.run.nr: Run number of the pedestal file." << endl;
393 gLog << " first cal.run nr.: Run number of the first calibration file." << endl;
394 gLog << " last cal.run nr.: Run number of the last calibration file." << endl;
395 gLog << " first dat.run nr.: Run number of the first data file to be calibrated." << endl;
396 gLog << " last dat.run nr.: Run number of the last data file to be calibrated." << endl;
397 gLog << endl;
398 gLog << "All calibration runs between (first cal.run nr.) and (last cal.run nr.) will be used" << endl;
399 gLog << "If last.cal.run.nr is 0 (default), only one calibration run is taken" << endl;
400 gLog << endl;
401 gLog << "All data runs between (first dat.run nr.) and (last dat.run nr.) will be used" << endl;
402 gLog << "If last.dat.run.nr is 0 (default), only one data run is taken" << endl;
403 gLog << endl;
404 gLog << "Additional Options: " << endl;
405 gLog << " --extractor=# Choose one of the following possible extractors (integer)" << endl;
406 gLog << " (default: Nr. 33) " << endl;
407 gLog << endl;
408 gLog << " Nr. Extractor Parameters " << endl;
409 gLog << endl;
410 gLog << " MExtractFixedWindow: " << endl;
411 gLog << " with the following parameters, if 'maxbin' defines the mean position" << endl;
412 gLog << " of the High-Gain FADC slice carrying the pulse maximum: " << endl;
413 gLog << " 1: SetRange('maxbin'-1,'maxbin'+2,'maxbin'+0.5,'maxbin'+3.5) " << endl;
414 gLog << " 2: SetRange('maxbin'-1,'maxbin'+2,'maxbin'-0.5,'maxbin'+4.5)" << endl;
415 gLog << " 3: SetRange('maxbin'-2,'maxbin'+3,'maxbin'-0.5,'maxbin'+4.5)" << endl;
416 gLog << " 4: SetRange('maxbin'-3,'maxbin'+4,'maxbin'-1.5,'maxbin'+5.5)" << endl;
417 gLog << " 5: SetRange('maxbin'-5,'maxbin'+8,'maxbin'-1.5,'maxbin'+7.5)" << endl;
418 gLog << " MExtractFixedWindowSpline: " << endl;
419 gLog << " 6: SetRange('maxbin'-1,'maxbin'+2,'maxbin'+0.5,'maxbin'+3.5)" << endl;
420 gLog << " 7: SetRange('maxbin'-1,'maxbin'+2,'maxbin'-0.5,'maxbin'+4.5)" << endl;
421 gLog << " 8: SetRange('maxbin'-2,'maxbin'+3,'maxbin'-0.5,'maxbin'+4.5)" << endl;
422 gLog << " 9: SetRange('maxbin'-3,'maxbin'+4,'maxbin'-1.5,'maxbin'+5.5)" << endl;
423 gLog << " 10: SetRange('maxbin'-5,'maxbin'+8,'maxbin'-1.5,'maxbin'+7.5)" << endl;
424 gLog << " MExtractFixedWindowPeakSearch: " << endl;
425 gLog << " SetRange(0,18,2,14) and the following parameters:" << endl;
426 gLog << " 11: SetWindows(2,2,2)" << endl;
427 gLog << " 12: SetWindows(4,4,2)" << endl;
428 gLog << " 13: SetWindows(6,6,4)" << endl;
429 gLog << " 14: SetWindows(4,6,4)" << endl;
430 gLog << " 15: SetWindows(8,8,4)" << endl;
431 gLog << " 16: SetWindows(14,10,4)" << endl;
432 gLog << " MExtractTimeAndChargeSlidingWindow:" << endl;
433 gLog << " SetRange(0,18,2,14) and the following parameters:" << endl;
434 gLog << " 17: SetWindowSize(2,2)" << endl;
435 gLog << " 18: SetWindowSize(4,4)" << endl;
436 gLog << " 19: SetWindowSize(6,6)" << endl;
437 gLog << " 20: SetWindowSize(4,6)" << endl;
438 gLog << " 21: SetWindowSize(8,8)" << endl;
439 gLog << " 22: SetWindowSize(14,10)" << endl;
440 gLog << " MExtractTimeAndChargeSpline: " << endl;
441 gLog << " SetChargeType(MExtractTimeAndChargeSpline::kIntegral) and:" << endl;
442 gLog << " SetRange(0,18,2,14) and the following parameters:" << endl;
443 gLog << " 23: SetRiseTime(1.5); SetFallTime(4.5)" << endl;
444 gLog << " 24: SetRiseTime(0.5); SetFallTime(2.5)" << endl;
445 gLog << " 25: SetRiseTime(0.5); SetFallTime(1.5)" << endl;
446 gLog << " 26: SetRiseTime(0.5); SetFallTime(0.5)" << endl;
447 gLog << " 27: SetChargeType(MExtractTimeAndChargeSpline::kAmplitude" << endl;
448 gLog << " SetRange(0,10,4,11)" << endl;
449 gLog << " MExtractTimeAndChargeDigitalFilter" << endl;
450 gLog << " SetRange(0,18,2,14) and the following parameters:" << endl;
451 gLog << " 28: SetNameWeightsFile('msignal/cosmics_weights.dat')" << endl;
452 gLog << " 29: SetNameWeightsFile('msignal/cosmics_weights4.dat')" << endl;
453 gLog << " 30: SetNameWeightsFile('msignal/cosmics_weights_logain6.dat')" << endl;
454 gLog << " 31: SetNameWeightsFile('msignal/cosmics_weights_logain4.dat')" << endl;
455 gLog << " 32: SetNameWeightsFile('msignal/calibration_weights_UV.dat')" << endl;
456 gLog << " 33: Use calibration weights for calibration events and cosmics weights for data events" << endl;
457 gLog << endl;
458 gLog << " --inpath=# Find the data in inpath" << endl;
459 gLog << " --outpath=# Write the output containers to outpath" << endl;
460 gLog << " --badfile=# Use the file # to exclude pixels from the beginning" << endl;
461 gLog << " --debug Use the TObjectTable for debugging " << endl;
462 gLog << " and write out the pixels as ascii tables" << endl;
463 gLog << " --useTest Use the class MJExtractCalibTest to test the calibration on itself" << endl;
464 gLog << " --skipBlindPix Skip the blind pixel calibration" << endl;
465 gLog << " --skipPINDiode Skip the PIN Diode calibration" << endl;
466}
467
468
469int main(int argc, char **argv)
470{
471 //
472 // Evaluate arguments
473 //
474 MArgs arg(argc, argv);
475
476 if (arg.HasOnly("-?") || arg.HasOnly("-h") || arg.HasOnly("--help"))
477 {
478 Usage();
479 return -1;
480 }
481
482 debug = arg.HasOnlyAndRemove("--debug") || arg.HasOnlyAndRemove("-d");
483 useTest = arg.HasOnlyAndRemove("--useTest") || arg.HasOnlyAndRemove("-e");
484 blindpix = !(arg.HasOnlyAndRemove("--skipBlindPix"));
485 pindiode = !(arg.HasOnlyAndRemove("--skipPINDiode"));
486
487 if (arg.HasOption("--extractor="))
488 extractorflag = arg.GetIntAndRemove("--extractor=");
489
490 if (arg.HasOption("--inpath="))
491 inpath = arg.GetStringAndRemove("--inpath=");
492
493 if (arg.HasOption("--outpath="))
494 outpath = arg.GetStringAndRemove("--outpath=");
495
496 if (arg.HasOption("--badfile="))
497 badfile = arg.GetStringAndRemove("--badfile=");
498
499 if (gSystem->AccessPathName(badfile,kFileExists))
500 {
501 gLog << "WARNING: the bad pixels file '" << badfile.Data() << "' doesn't exist." << endl;
502 badfile = "";
503 }
504
505 // check for the right usage of the program
506 //
507 if (arg.GetNumArguments()>4)
508 {
509 Usage();
510 return -1;
511 }
512
513 //
514 // Initialize Non-GUI (batch) mode
515 //
516 gROOT->SetBatch();
517
518 //
519 // Switch off the display
520 //
521 useDisplay = kTRUE;
522 //
523 // check for the arguments
524 //
525 Int_t pedr = 0;
526 Int_t calr1 = 0;
527 Int_t calr2 = 0;
528
529 const Int_t nargs = arg.GetNumArguments();
530
531 if (nargs>=3)
532 {
533 pedr = arg.GetArgumentInt(0);
534 calr1 = arg.GetArgumentInt(1);
535 calr2 = arg.GetArgumentInt(2);
536 return calibration(pedr,calr1,calr2);
537 }
538
539 if (nargs>=2)
540 {
541 pedr = arg.GetArgumentInt(0);
542 calr1 = arg.GetArgumentInt(1);
543 gLog << "PEDR: " << pedr << " CALR1: " << calr1 << " CALR2 " << calr2 << endl;
544 gLog << "inpath: " << inpath << endl;
545 gLog << "extractor: " << extractorflag << endl;
546 return calibration();
547 }
548
549 if (nargs>=1)
550 {
551 pedr = arg.GetArgumentInt(0);
552 return calibration(pedr,calr1,calr2);
553 }
554
555 return calibration(pedr,calr1,calr2);
556}
557
Note: See TracBrowser for help on using the repository browser.