| 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-2003
|
|---|
| 21 | !
|
|---|
| 22 | !
|
|---|
| 23 | \* ======================================================================== */
|
|---|
| 24 |
|
|---|
| 25 | void calibration(TString pedname="/data/MAGIC/rootdata/2003_12_01/20031130_03340_P_CrabNebula_E.root",
|
|---|
| 26 | TString calname="/data/MAGIC/rootdata/2003_12_01/20031130_03341_C_CrabNebula_E.root")
|
|---|
| 27 | {
|
|---|
| 28 |
|
|---|
| 29 | //
|
|---|
| 30 | // Create a empty Parameter List and an empty Task List
|
|---|
| 31 | // The tasklist is identified in the eventloop by its name
|
|---|
| 32 | //
|
|---|
| 33 | MParList plist;
|
|---|
| 34 |
|
|---|
| 35 | MTaskList tlist;
|
|---|
| 36 | plist.AddToList(&tlist);
|
|---|
| 37 |
|
|---|
| 38 | //
|
|---|
| 39 | // Now setup the tasks and tasklist for the pedestals:
|
|---|
| 40 | // ---------------------------------------------------
|
|---|
| 41 | //
|
|---|
| 42 |
|
|---|
| 43 | MReadMarsFile read("Events", pedname);
|
|---|
| 44 | read.DisableAutoScheme();
|
|---|
| 45 |
|
|---|
| 46 | MGeomApply geomapl;
|
|---|
| 47 | MPedCalcPedRun pedcalc;
|
|---|
| 48 | MGeomCamMagic geomcam;
|
|---|
| 49 | MPedestalCam pedcam;
|
|---|
| 50 |
|
|---|
| 51 | tlist.AddToList(&read);
|
|---|
| 52 | tlist.AddToList(&geomapl);
|
|---|
| 53 | tlist.AddToList(&pedcalc);
|
|---|
| 54 |
|
|---|
| 55 | plist.AddToList(&pedcam);
|
|---|
| 56 |
|
|---|
| 57 | MHCamEvent hist("Pedestal");
|
|---|
| 58 | hist.SetType(0);
|
|---|
| 59 | plist.AddToList(&hist);
|
|---|
| 60 | MFillH fill(&hist, "MPedestalCam");
|
|---|
| 61 |
|
|---|
| 62 | tlist.AddToList(&fill);
|
|---|
| 63 |
|
|---|
| 64 | MStatusDisplay *d1 = new MStatusDisplay;
|
|---|
| 65 |
|
|---|
| 66 | // Set update time to 3s
|
|---|
| 67 | d1->SetUpdateTime(3000);
|
|---|
| 68 |
|
|---|
| 69 | //
|
|---|
| 70 | // Create and setup the eventloop
|
|---|
| 71 | //
|
|---|
| 72 | MEvtLoop evtloop;
|
|---|
| 73 | evtloop.SetParList(&plist);
|
|---|
| 74 | evtloop.SetDisplay(d1);
|
|---|
| 75 |
|
|---|
| 76 | //
|
|---|
| 77 | // Execute first analysis
|
|---|
| 78 | //
|
|---|
| 79 | if (!evtloop.Eventloop())
|
|---|
| 80 | return;
|
|---|
| 81 |
|
|---|
| 82 | tlist.PrintStatistics();
|
|---|
| 83 |
|
|---|
| 84 |
|
|---|
| 85 | //
|
|---|
| 86 | // Create a empty Parameter List and an empty Task List
|
|---|
| 87 | //
|
|---|
| 88 | MParList plist2;
|
|---|
| 89 |
|
|---|
| 90 | MTaskList tlist2;
|
|---|
| 91 | plist2.AddToList(&tlist2);
|
|---|
| 92 |
|
|---|
| 93 |
|
|---|
| 94 | plist2.AddToList((MPedestalCam*)plist.FindObject("MPedestalCam"));
|
|---|
| 95 |
|
|---|
| 96 | // MGeomApply geomapl2;
|
|---|
| 97 | tlist2.AddToList(&geomapl);
|
|---|
| 98 |
|
|---|
| 99 | //
|
|---|
| 100 | // Now setup the new tasks and tasklist for the calibration
|
|---|
| 101 | // ---------------------------------------------------
|
|---|
| 102 | //
|
|---|
| 103 |
|
|---|
| 104 | MReadMarsFile read2("Events", calname);
|
|---|
| 105 | read2.DisableAutoScheme();
|
|---|
| 106 |
|
|---|
| 107 | MExtractSignal sigsig;
|
|---|
| 108 | MCalibrationCalc calcalc;
|
|---|
| 109 | // calcalc.SetSkipTFits();
|
|---|
| 110 | MExtractedSignalCam sigcam;
|
|---|
| 111 |
|
|---|
| 112 | plist2.AddToList(&geomcam);
|
|---|
| 113 | plist2.AddToList(&sigcam);
|
|---|
| 114 |
|
|---|
| 115 | //
|
|---|
| 116 | // As long, as we don't have digital modules,
|
|---|
| 117 | // we have to set the color of the pulser LED by hand
|
|---|
| 118 | //
|
|---|
| 119 | calcalc.SetPulserColor(MCalibrationCalc::kECT1);
|
|---|
| 120 |
|
|---|
| 121 | tlist2.AddToList(&read2);
|
|---|
| 122 | tlist2.AddToList(&calcalc);
|
|---|
| 123 | tlist2.AddToList(&sigsig);
|
|---|
| 124 |
|
|---|
| 125 | MHCamEvent hist2;
|
|---|
| 126 | hist2.SetType(8);
|
|---|
| 127 | plist2.AddToList(&hist2);
|
|---|
| 128 | MFillH fill2("MHCamEvent", "MCalibrationCam");
|
|---|
| 129 | tlist2.AddToList(&fill2);
|
|---|
| 130 |
|
|---|
| 131 | //
|
|---|
| 132 | // Create and setup the eventloop
|
|---|
| 133 | //
|
|---|
| 134 | MEvtLoop evtloop2;
|
|---|
| 135 | evtloop2.SetParList(&plist2);
|
|---|
| 136 |
|
|---|
| 137 | //
|
|---|
| 138 | // Execute second analysis
|
|---|
| 139 | //
|
|---|
| 140 | if (!evtloop2.Eventloop())
|
|---|
| 141 | return;
|
|---|
| 142 |
|
|---|
| 143 | tlist2.PrintStatistics();
|
|---|
| 144 |
|
|---|
| 145 | //
|
|---|
| 146 | // just one example how to get the plots of individual pixels
|
|---|
| 147 | //
|
|---|
| 148 | MCalibrationCam *cam = plist2.FindObject("MCalibrationCam");
|
|---|
| 149 | cam.Print();
|
|---|
| 150 |
|
|---|
| 151 | //
|
|---|
| 152 | // Here we are confronted to a serious bug in ROOT:
|
|---|
| 153 | // If we do not apply the next command, gPad will get
|
|---|
| 154 | // screwed up completely: (Thanks to tbretz for finding out
|
|---|
| 155 | // the reason during several hours!!!)
|
|---|
| 156 | //
|
|---|
| 157 | gROOT->GetListOfCanvases()->Delete();
|
|---|
| 158 |
|
|---|
| 159 | MHCamEvent &h = *(MHCamEvent*)plist2->FindObject("MHCamEvent");
|
|---|
| 160 | MHCamera &disp0 = *h.GetHistByName();
|
|---|
| 161 | MHCamera disp1 (geomcam, "MCalibrationCam;q", "Fitted Mean Charges");
|
|---|
| 162 | // MHCamera disp2 (geomcam, "MCalibrationCam;errq", "Error of Fitted Mean Charges");
|
|---|
| 163 | MHCamera disp3 (geomcam, "MCalibrationCam;sigmaq", "Sigma of Fitted Mean Charges");
|
|---|
| 164 | // MHCamera disp4 (geomcam, "MCalibrationCam;errsigmaq", "Error of Sigma of Fitted Mean Charges");
|
|---|
| 165 | MHCamera disp5 (geomcam, "MCalibrationCam;probq", "Probability of Fit");
|
|---|
| 166 | MHCamera disp6 (geomcam, "MCalibrationCam;t", "Arrival Times");
|
|---|
| 167 | MHCamera disp7 (geomcam, "MCalibrationCam;sigmat", "Sigma of Arrival Times");
|
|---|
| 168 | MHCamera disp8 (geomcam, "MCalibrationCam;probt", "Probability of Time Fit");
|
|---|
| 169 | MHCamera disp9 (geomcam, "MCalibrationCam;ped", "Pedestals");
|
|---|
| 170 | MHCamera disp10 (geomcam, "MCalibrationCam;pedrms", "Pedestal RMS");
|
|---|
| 171 | MHCamera disp11 (geomcam, "MCalibrationCam;rsigma", "Reduced Sigmas");
|
|---|
| 172 | MHCamera disp12 (geomcam, "MCalibrationCam;phe", "Nr. of Phe's (F-Factor Method)");
|
|---|
| 173 | MHCamera disp13 (geomcam, "MCalibrationCam;convphe", "Conversion Factor (F-Factor Method)");
|
|---|
| 174 | MHCamera disp14 (geomcam, "MCalibrationCam;photons", "Nr. of Photons (Blind Pixel Method)");
|
|---|
| 175 | MHCamera disp15 (geomcam, "MCalibrationCam;convphot", "Conversion Factor (Blind Pixel Method)");
|
|---|
| 176 |
|
|---|
| 177 | disp1.SetCamContent(*cam, 0);
|
|---|
| 178 | disp1.SetCamError(*cam,1);
|
|---|
| 179 | // disp2.SetCamContent(*cam, 1);
|
|---|
| 180 |
|
|---|
| 181 | disp3.SetCamContent(*cam, 2);
|
|---|
| 182 | disp3.SetCamError(*cam,3);
|
|---|
| 183 | // disp4.SetCamContent(*cam, 3);
|
|---|
| 184 | disp5.SetCamContent(*cam, 4);
|
|---|
| 185 |
|
|---|
| 186 | disp6.SetCamContent(*cam, 5);
|
|---|
| 187 | disp6.SetCamError(*cam,6);
|
|---|
| 188 | disp7.SetCamContent(*cam, 6);
|
|---|
| 189 | disp8.SetCamContent(*cam, 7);
|
|---|
| 190 |
|
|---|
| 191 | disp9.SetCamContent(*cam, 8);
|
|---|
| 192 | disp9.SetCamError(*cam,9);
|
|---|
| 193 | disp10.SetCamContent(*cam, 9);
|
|---|
| 194 |
|
|---|
| 195 | disp11.SetCamContent(*cam, 10);
|
|---|
| 196 |
|
|---|
| 197 | disp12.SetCamContent(*cam, 11);
|
|---|
| 198 | disp13.SetCamContent(*cam, 12);
|
|---|
| 199 | disp14.SetCamContent(*cam, 13);
|
|---|
| 200 | disp15.SetCamContent(*cam, 14);
|
|---|
| 201 | // disp16.SetCamError(*cam, 16);
|
|---|
| 202 |
|
|---|
| 203 |
|
|---|
| 204 | disp1.SetYTitle("Q [FADC counts]");
|
|---|
| 205 | // disp2.SetYTitle("\\Delta Q [FADC counts]");
|
|---|
| 206 | disp3.SetYTitle("\\sigma_{Q} [FADC counts]");
|
|---|
| 207 | // disp4.SetYTitle("\\Delta {\\sigma_{Q}} [FADC counts]");
|
|---|
| 208 | disp5.SetYTitle("P [au]");
|
|---|
| 209 | disp6.SetYTitle("T [FADC slices]");
|
|---|
| 210 | disp7.SetYTitle("\\Delta T [FADC slices]");
|
|---|
| 211 | disp8.SetYTitle("P [au]");
|
|---|
| 212 | disp9.SetYTitle("P [FADC counts/ slice ]");
|
|---|
| 213 | disp10.SetYTitle("RMS_{P} [FADC counts / slice ]");
|
|---|
| 214 | disp11.SetYTitle("\\sigma^2_{Q} - RMS^2_{P} [FADC counts^2]");
|
|---|
| 215 | disp12.SetYTitle("Nr Phe's");
|
|---|
| 216 | disp13.SetYTitle("Conversion Factor [Phe/FADC count]");
|
|---|
| 217 | disp14.SetYTitle("Nr Photons");
|
|---|
| 218 | disp15.SetYTitle("Conversion Factor [Ph/FADC count]");
|
|---|
| 219 |
|
|---|
| 220 | MStatusDisplay *d2 = new MStatusDisplay;
|
|---|
| 221 |
|
|---|
| 222 | // Set update time to 1s
|
|---|
| 223 | d2->SetUpdateTime(1000);
|
|---|
| 224 |
|
|---|
| 225 | TCanvas *c1 = &d2->AddTab("Fitted Charges");
|
|---|
| 226 | c1->Divide(2, 2);
|
|---|
| 227 |
|
|---|
| 228 | TObject *obj;
|
|---|
| 229 |
|
|---|
| 230 | c1->cd(1);
|
|---|
| 231 | gStyle->SetOptStat(1111);
|
|---|
| 232 | obj=disp1.DrawCopy("hist");
|
|---|
| 233 | ((MHCamera*)obj)->AddNotify(*cam);
|
|---|
| 234 |
|
|---|
| 235 | c1->cd(3);
|
|---|
| 236 | gPad->SetBorderMode(0);
|
|---|
| 237 | obj->Draw();
|
|---|
| 238 |
|
|---|
| 239 | c1->cd(2);
|
|---|
| 240 | gStyle->SetOptStat(1101);
|
|---|
| 241 | obj=disp3.DrawCopy("hist");
|
|---|
| 242 | ((MHCamera*)obj)->AddNotify(*cam);
|
|---|
| 243 |
|
|---|
| 244 | c1->cd(4);
|
|---|
| 245 | gPad->SetBorderMode(0);
|
|---|
| 246 | obj->Draw();
|
|---|
| 247 |
|
|---|
| 248 |
|
|---|
| 249 | TCanvas *c12 = &d2->AddTab("Fit Prob.");
|
|---|
| 250 | c12->Divide(1, 2);
|
|---|
| 251 |
|
|---|
| 252 | c12->cd(1);
|
|---|
| 253 | gStyle->SetOptStat(1101);
|
|---|
| 254 | obj=disp5.DrawCopy("hist");
|
|---|
| 255 | ((MHCamera*)obj)->AddNotify(*cam);
|
|---|
| 256 |
|
|---|
| 257 | c12->cd(2);
|
|---|
| 258 | gPad->SetBorderMode(0);
|
|---|
| 259 | obj->Draw();
|
|---|
| 260 |
|
|---|
| 261 | TCanvas *c2 = &d2->AddTab("Fitted Times");
|
|---|
| 262 | c2->Divide(3, 2);
|
|---|
| 263 |
|
|---|
| 264 | c2->cd(1);
|
|---|
| 265 | gStyle->SetOptStat(1111);
|
|---|
| 266 | obj=disp6.DrawCopy("hist");
|
|---|
| 267 | ((MHCamera*)obj)->AddNotify(*cam);
|
|---|
| 268 |
|
|---|
| 269 | c2->cd(4);
|
|---|
| 270 | obj->Draw();
|
|---|
| 271 |
|
|---|
| 272 | c2->cd(2);
|
|---|
| 273 | gStyle->SetOptStat(1101);
|
|---|
| 274 | obj=disp7.DrawCopy("hist");
|
|---|
| 275 | ((MHCamera*)obj)->AddNotify(*cam);
|
|---|
| 276 |
|
|---|
| 277 | c2->cd(5);
|
|---|
| 278 | obj->Draw();
|
|---|
| 279 |
|
|---|
| 280 | c2->cd(3);
|
|---|
| 281 | gStyle->SetOptStat(1101);
|
|---|
| 282 | obj=disp8.DrawCopy("hist");
|
|---|
| 283 | ((MHCamera*)obj)->AddNotify(*cam);
|
|---|
| 284 |
|
|---|
| 285 | c2->cd(6);
|
|---|
| 286 | obj->Draw();
|
|---|
| 287 |
|
|---|
| 288 | TCanvas *c3 = &d2->AddTab("Pedestals");
|
|---|
| 289 | c3->Divide(2, 2);
|
|---|
| 290 |
|
|---|
| 291 | c3->cd(1);
|
|---|
| 292 | gStyle->SetOptStat(1111);
|
|---|
| 293 | obj=disp9.DrawCopy("hist");
|
|---|
| 294 | ((MHCamera*)obj)->AddNotify(*cam);
|
|---|
| 295 |
|
|---|
| 296 | c3->cd(3);
|
|---|
| 297 | obj->Draw();
|
|---|
| 298 |
|
|---|
| 299 | c3->cd(2);
|
|---|
| 300 | gStyle->SetOptStat(1111);
|
|---|
| 301 | obj=disp10.DrawCopy("hist");
|
|---|
| 302 | ((MHCamera*)obj)->AddNotify(*cam);
|
|---|
| 303 |
|
|---|
| 304 | c3->cd(4);
|
|---|
| 305 | obj->Draw();
|
|---|
| 306 |
|
|---|
| 307 | TCanvas *c4 = &d2->AddTab("Reduced Charges");
|
|---|
| 308 | c4->Divide(2,1);
|
|---|
| 309 |
|
|---|
| 310 | c4->cd(1);
|
|---|
| 311 | gStyle->SetOptStat(1111);
|
|---|
| 312 | obj=disp11.DrawCopy("hist");
|
|---|
| 313 | ((MHCamera*)obj)->AddNotify(*cam);
|
|---|
| 314 |
|
|---|
| 315 | c4->cd(3);
|
|---|
| 316 | obj->Draw();
|
|---|
| 317 |
|
|---|
| 318 | TCanvas *c5 = &d2->AddTab("F-Factor Method");
|
|---|
| 319 | c5->Divide(2, 2);
|
|---|
| 320 |
|
|---|
| 321 | c5->cd(1);
|
|---|
| 322 | gStyle->SetOptStat(1111);
|
|---|
| 323 | obj=disp12.DrawCopy("hist");
|
|---|
| 324 | ((MHCamera*)obj)->AddNotify(*cam);
|
|---|
| 325 |
|
|---|
| 326 | c5->cd(3);
|
|---|
| 327 | obj->Draw();
|
|---|
| 328 |
|
|---|
| 329 | c5->cd(2);
|
|---|
| 330 | gStyle->SetOptStat(1101);
|
|---|
| 331 | obj=disp13.DrawCopy("hist");
|
|---|
| 332 | ((MHCamera*)obj)->AddNotify(*cam);
|
|---|
| 333 |
|
|---|
| 334 | c5->cd(4);
|
|---|
| 335 | obj->Draw();
|
|---|
| 336 |
|
|---|
| 337 | TCanvas *c6 = &d2->AddTab("Blind Pixel Method");
|
|---|
| 338 | c6->Divide(2, 2);
|
|---|
| 339 |
|
|---|
| 340 | c6->cd(1);
|
|---|
| 341 | gStyle->SetOptStat(1111);
|
|---|
| 342 | obj=disp14.DrawCopy("hist");
|
|---|
| 343 | ((MHCamera*)obj)->AddNotify(*cam);
|
|---|
| 344 |
|
|---|
| 345 | c6->cd(3);
|
|---|
| 346 | obj->Draw();
|
|---|
| 347 |
|
|---|
| 348 | c6->cd(2);
|
|---|
| 349 | gStyle->SetOptStat(1101);
|
|---|
| 350 | obj=disp15.DrawCopy("hist");
|
|---|
| 351 | ((MHCamera*)obj)->AddNotify(*cam);
|
|---|
| 352 |
|
|---|
| 353 | c6->cd(4);
|
|---|
| 354 | obj->Draw();
|
|---|
| 355 |
|
|---|
| 356 | }
|
|---|
| 357 |
|
|---|