Ignore:
Timestamp:
03/16/05 13:27:32 (20 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mcalib
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mcalib/MCalibColorSet.cc

    r6361 r6828  
    316316      return kFALSE;
    317317      break;
    318      
     318
     319    case 40493:
    319320    case 45116:
    320321    case 45609:
    321322    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 ";
    323325      *fLog << err << "the camera. It cannot be used for the standard calibration " << endl;
    324326      return kFALSE;
  • trunk/MagicSoft/Mars/mcalib/MCalibrationChargeCalc.cc

    r6393 r6828  
    588588          *fLog << warn << "Multiple colours used simultaneously!" ;
    589589          fHCam->Finalize();
    590           fHBlindCam->Finalize();
     590          if (fHBlindCam)
     591            fHBlindCam->Finalize();
    591592
    592593          Finalize();
    593594
    594595          fHCam->ResetHists();
    595           fHBlindCam->ResetHists();
     596          if (fHBlindCam)
     597            fHBlindCam->ResetHists();
    596598
    597599          *fLog << inf << "Starting next calibration... " << flush;
    598600
    599601          fHCam->SetColor(col);
    600           fHBlindCam->SetColor(col);
     602          if (fHBlindCam)
     603            fHBlindCam->SetColor(col);
    601604
    602605          fCam->SetPulserColor(col);
     
    623626 
    624627  fHCam->SetColor(col);
    625   fHBlindCam->SetColor(col);
     628  if (fHBlindCam)
     629    fHBlindCam->SetColor(col);
    626630
    627631  MCalibrationBlindCam  *blindcam  = fIntensBlind   
Note: See TracChangeset for help on using the changeset viewer.