Changeset 6528 for trunk/MagicSoft/Mars


Ignore:
Timestamp:
02/16/05 15:48:20 (20 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r6527 r6528  
    5454   * mhist/MHCamEvent.cc:
    5555     - replaced the warn in SetupFill by an inf
     56
     57   * mhcalib/MHCalibrationCam.cc, mhcalib/MHCalibrationHiLoCam.cc,
     58     mhcalib/MHCalibrationChargePINDiode.cc:
     59     - removed obsolete output after a failed FindCreateObj (the
     60       function itself does the output in case of failure)
     61
     62   * mhcalib/MHCalibrationCam.cc:
     63     - replaced 'err' by 'warn' for under-/overflow in lo-gain pixel,
     64       it doesn't result in an fatal error (abort)
    5665
    5766
  • trunk/MagicSoft/Mars/mhcalib/MHCalibrationCam.cc

    r6526 r6528  
    11981198    {
    11991199      *fLog << warn << GetDescriptor()
    1200             << ": Only overflow or underflow in high-gain pixel: " << pix.GetPixId() << endl;
     1200            << ": Only overflow or underflow in hi-gain pixel: " << pix.GetPixId() << endl;
    12011201      return;
    12021202    } 
     
    12811281  if (hist.IsEmpty() || hist.IsOnlyOverflow() || hist.IsOnlyUnderflow())
    12821282    {
    1283       *fLog << err << GetDescriptor()
    1284             << ": Only overflow or underflow in low-gain pixel: " << pix.GetPixId() << endl;
     1283      *fLog << warn << GetDescriptor()
     1284            << ": Only overflow or underflow in lo-gain pixel: " << pix.GetPixId() << endl;
    12851285      return;
    12861286    } 
  • trunk/MagicSoft/Mars/mhcalib/MHCalibrationChargePINDiode.cc

    r5098 r6528  
    206206  fSigPIN = (MExtractedSignalPINDiode*)pList->FindCreateObj("MExtractedSignalPINDiode");
    207207  if (!fSigPIN)
    208   {
    209       *fLog << err << "MExtractedSignalPINDiode not found... aborting " << endl;
    210208      return kFALSE;
    211   }
    212209
    213210  fPINDiode = (MCalibrationChargePINDiode*)pList->FindCreateObj("MCalibrationChargePINDiode");
    214211  if (!fPINDiode)
    215   {
    216       *fLog << err << "MCalibrationChargePINDiode not found... aborting " << endl;
    217212      return kFALSE;
    218   }
    219213
    220214  return kTRUE;
  • trunk/MagicSoft/Mars/mhcalib/MHCalibrationHiLoCam.cc

    r6007 r6528  
    239239      fCam = (MCalibrationCam*)pList->FindCreateObj(AddSerialNumber("MCalibrationHiLoCam"));
    240240      if (!fCam)
    241         {
    242           *fLog << err << "Cannot find nor create MCalibrationHiLoCam... abort." << endl;
    243241          return kFALSE;
    244         }
    245242      fCam->Init(*fGeom);
    246243    }
Note: See TracChangeset for help on using the changeset viewer.