Ignore:
Timestamp:
10/01/04 16:41:51 (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/MCalibrationChargeCalc.cc

    r5133 r5156  
     1
    12/* ======================================================================== *\
    23!
     
    955956  if (cal.GetMean() < fChargeLimit*cal.GetPedRms())
    956957    {
    957       *fLog << warn << GetDescriptor()
    958             << Form(": Fitted Charge: %5.2f is smaller than %2.1f",cal.GetMean(),fChargeLimit)
    959             << Form("  Pedestal RMS: %5.2f in %s%4i",cal.GetPedRms(),what,cal.GetPixId()) << endl;
     958      *fLog << warn
     959            << Form("Fitted Charge: %5.2f < %2.1f",cal.GetMean(),fChargeLimit)
     960            << Form(" * Pedestal RMS %5.2f in %s%3i",cal.GetPedRms(),what,cal.GetPixId()) << endl;
    960961      bad.SetUncalibrated( MBadPixelsPix::kChargeIsPedestal);
    961962    }
     
    963964   if (cal.GetMean() < fChargeRelErrLimit*cal.GetMeanErr())
    964965    {
    965       *fLog << warn << GetDescriptor()
    966             << Form(": Fitted Charge: %4.2f is smaller than %2.1f",cal.GetMean(),fChargeRelErrLimit)
    967             << Form(" times its error: %4.2f in %s%4i",cal.GetMeanErr(),what,cal.GetPixId()) << endl;
     966      *fLog << warn
     967            << Form("Fitted Charge: %4.2f < %2.1f",cal.GetMean(),fChargeRelErrLimit)
     968            << Form(" * its error %4.2f in %s%3i",cal.GetMeanErr(),what,cal.GetPixId()) << endl;
    968969      bad.SetUncalibrated( MBadPixelsPix::kChargeRelErrNotValid );
    969970    }
     
    971972  if (cal.GetSigma() < cal.GetPedRms())
    972973    {
    973       *fLog << warn << GetDescriptor()
    974             << Form(": Sigma of Fitted Charge: %6.2f is smaller than",cal.GetSigma())
    975             << Form(" Ped. RMS: %5.2f in %s%4i",cal.GetPedRms(),what,cal.GetPixId()) << endl;
     974      *fLog << warn
     975            << Form("Sigma of Fitted Charge: %6.2f <",cal.GetSigma())
     976            << Form(" Ped. RMS=%5.2f in %s%3i",cal.GetPedRms(),what,cal.GetPixId()) << endl;
    976977      bad.SetUncalibrated( MBadPixelsPix::kChargeSigmaNotValid );
    977978      return kFALSE;
     
    980981  if (!cal.CalcReducedSigma())
    981982    {
    982       *fLog << warn << GetDescriptor()
    983             << Form(": Could not calculate the reduced sigma in %s:               ",what)
     983      *fLog << warn
     984            << Form("Could not calculate the reduced sigma in %s:               ",what)
    984985            << Form("         %4i",cal.GetPixId())
    985986            << endl;
     
    990991  if (!cal.CalcFFactor())
    991992    {
    992       *fLog << warn << GetDescriptor()
    993             << Form(": Could not calculate the F-Factor in %s:                    ",what)
     993      *fLog << warn
     994            << Form("Could not calculate the F-Factor in %s:                    ",what)
    994995            << Form("         %4i",cal.GetPixId())
    995996            << endl;
     
    10001001  if (!cal.CalcConvFFactor())
    10011002    {
    1002       *fLog << warn << GetDescriptor()
    1003             << Form(": Could not calculate the Conv. FADC counts to Phes in %s:  ",what)
     1003      *fLog << warn
     1004            << Form("Could not calculate the Conv. FADC counts to Phes in %s:  ",what)
    10041005            << Form("         %4i",cal.GetPixId())
    10051006            << endl;
  • trunk/MagicSoft/Mars/mcalib/MCalibrationRelTimeCalc.cc

    r5134 r5156  
    418418      if ( res < lowlim[aidx] || res > upplim[aidx] )
    419419        {
    420           *fLog << warn << GetDescriptor() << ": Deviating time resolution: "
    421             << Form("%4.2f",res) << " out of accepted limits: ["
    422                 << Form("%4.2f%s%4.2f",lowlim[aidx],",",upplim[aidx]) << "] in pixel " << i << endl;
     420          *fLog << warn << "Deviating time resolution: "
     421            << Form("%4.2f",res) << " out of accepted limits ["
     422                << Form("%4.2f,%4.2f",lowlim[aidx],upplim[aidx]) << "] in pixel " << i << endl;
    423423          bad.SetUncalibrated( MBadPixelsPix::kDeviatingTimeResolution);
    424424          pix.SetExcluded();
Note: See TracChangeset for help on using the changeset viewer.