Changeset 6828 for trunk/MagicSoft/Mars/mcalib
- Timestamp:
- 03/16/05 13:27:32 (20 years ago)
- Location:
- trunk/MagicSoft/Mars/mcalib
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mcalib/MCalibColorSet.cc
r6361 r6828 316 316 return kFALSE; 317 317 break; 318 318 319 case 40493: 319 320 case 45116: 320 321 case 45609: 321 322 case 45219: 322 *fLog << err << "Sorry, run " << num << " was taken with a combination of colours used to flat-field "; 323 *fLog << err << dec << "Sorry, run " << num 324 << " was taken with a combination of colours used to flat-field "; 323 325 *fLog << err << "the camera. It cannot be used for the standard calibration " << endl; 324 326 return kFALSE; -
trunk/MagicSoft/Mars/mcalib/MCalibrationChargeCalc.cc
r6393 r6828 588 588 *fLog << warn << "Multiple colours used simultaneously!" ; 589 589 fHCam->Finalize(); 590 fHBlindCam->Finalize(); 590 if (fHBlindCam) 591 fHBlindCam->Finalize(); 591 592 592 593 Finalize(); 593 594 594 595 fHCam->ResetHists(); 595 fHBlindCam->ResetHists(); 596 if (fHBlindCam) 597 fHBlindCam->ResetHists(); 596 598 597 599 *fLog << inf << "Starting next calibration... " << flush; 598 600 599 601 fHCam->SetColor(col); 600 fHBlindCam->SetColor(col); 602 if (fHBlindCam) 603 fHBlindCam->SetColor(col); 601 604 602 605 fCam->SetPulserColor(col); … … 623 626 624 627 fHCam->SetColor(col); 625 fHBlindCam->SetColor(col); 628 if (fHBlindCam) 629 fHBlindCam->SetColor(col); 626 630 627 631 MCalibrationBlindCam *blindcam = fIntensBlind
Note:
See TracChangeset
for help on using the changeset viewer.