Changeset 5135 for trunk/MagicSoft/Mars/mjobs/MJCalibration.cc
- Timestamp:
- 09/25/04 13:51:15 (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mjobs/MJCalibration.cc
r5111 r5135 167 167 const Int_t MJCalibration::gkIFAEBoxInaugurationRun = 20113; 168 168 const Int_t MJCalibration::gkSecondBlindPixelInstallation = 31693; 169 const Int_t MJCalibration::gkThirdBlindPixelInstallation = 99999; 169 const Int_t MJCalibration::gkSpecialPixelsContInstallation = 34057; 170 const Int_t MJCalibration::gkThirdBlindPixelInstallation = 99999; 170 171 171 172 const Double_t MJCalibration::fgConvFADC2PheMin = 0.; … … 321 322 MCalibrationQECam *qecam = NULL; 322 323 MCalibrationRelTimeCam *relcam = NULL; 324 MBadPixelsCam *badcam = NULL; 323 325 324 326 if (IsIntensity()) … … 327 329 qecam = (MCalibrationQECam*) fIntensQECam.GetCam(); 328 330 relcam = (MCalibrationRelTimeCam*)fIntensRelTimeCam.GetCam(); 331 badcam = (MBadPixelsCam*) fIntensBadCam.GetCam(); 329 332 } 330 333 else … … 333 336 qecam = &fQECam; 334 337 relcam = &fRelTimeCam; 338 badcam = &fBadPixels; 335 339 } 336 340 … … 386 390 // Pixels with defects 387 391 disp23.SetCamContent(*cam, 20); 388 disp24.SetCamContent( fBadPixels, 6);389 disp25.SetCamContent( fBadPixels, 7);392 disp24.SetCamContent(*badcam, 6); 393 disp25.SetCamContent(*badcam, 7); 390 394 391 395 // Oscillations 392 disp26.SetCamContent( fBadPixels, 10);393 disp27.SetCamContent( fBadPixels, 11);396 disp26.SetCamContent(*badcam, 10); 397 disp27.SetCamContent(*badcam, 11); 394 398 395 399 // Arrival Times … … 610 614 // CONVERSION FACTORS 611 615 // 612 613 616 TCanvas &c2 = fDisplay->AddTab("Conversion"); 614 617 c2.Divide(3,3); … … 1386 1389 else if (run < gkThirdBlindPixelInstallation) 1387 1390 { 1391 1388 1392 MCalibrationBlindCamTwoNewStyle blindresults; 1389 1393
Note:
See TracChangeset
for help on using the changeset viewer.