Ignore:
Timestamp:
10/01/04 16:41:51 (21 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mhcalib
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mhcalib/MHCalibrationChargeCam.cc

    r5151 r5156  
    923923      if (overflow > 0.1)
    924924        {
    925           *fLog << warn << GetDescriptor()
    926                 << ": HiGain Histogram Overflow occurred " << overflow
    927                 << " times in pixel: " << i << " (without saturation!) " << endl;
     925          *fLog << warn
     926                << "HiGain Hist-overflow " << overflow
     927                << " times in pix: " << i << " (w/o saturation!) " << endl;
    928928          bad.SetUncalibrated( MBadPixelsPix::kHiGainOverFlow );
    929929        }
     
    932932      if (overflow > 0.1)
    933933        {
    934           *fLog << warn << GetDescriptor()
    935                 << ": HiGain Histogram Underflow occurred " << overflow
    936                 << " times in pixel: " << i << " (without saturation!) " << endl;
     934          *fLog << warn
     935                << "HiGain Hist-underflow " << overflow
     936                << " times in pix: " << i << " (w/o saturation!) " << endl;
    937937          bad.SetUncalibrated( MBadPixelsPix::kHiGainOverFlow );
    938938        }
     
    965965        if (overflow > 0.1)
    966966          {
    967             *fLog << warn << GetDescriptor()
    968                   << ": LoGain Histogram Overflow occurred " << overflow
    969                   << " times in pixel: " << i << " (without saturation!) " << endl;
     967              *fLog << warn
     968                  << "LoGain Hist-overflow " << overflow
     969                  << " times in pix: " << i << " (w/o saturation!) " << endl;
    970970            bad.SetUncalibrated( MBadPixelsPix::kLoGainOverFlow );
    971971          }
     
    974974        if (overflow > 0.1)
    975975          {
    976             *fLog << warn << GetDescriptor()
    977                   << ": LoGain Histogram Underflow occurred " << overflow
    978                   << " times in pixel: " << i << " (without saturation!) " << endl;
     976            *fLog << warn
     977                  << "LoGain Hist-underflow " << overflow
     978                  << " times in pix: " << i << " (w/o saturation!) " << endl;
    979979            bad.SetUncalibrated( MBadPixelsPix::kLoGainOverFlow );
    980980          }
     
    11081108  if ( mean < lowerlimit)
    11091109    {
    1110       *fLog << warn << GetDescriptor()
    1111             << Form("%s%3.1f%s%2.1f%s%s",": Mean ArrivalTime: ",mean," smaller than ",fTimeLowerLimit,
    1112                     " FADC slices from lower edge in pixel ",hist.GetName()) << endl;
     1110      *fLog << warn
     1111            << Form("%s%3.1f%s%2.1f%s%s","Mean ArrivalTime=",mean," < ",fTimeLowerLimit,
     1112                    " slices from lower edge in pixel ",hist.GetName()) << endl;
    11131113      bad.SetUncalibrated( MBadPixelsPix::kMeanTimeInFirstBin );
    11141114    }
     
    11161116  if ( mean  > upperlimit )
    11171117    {
    1118       *fLog << warn << GetDescriptor()
    1119             << Form("%s%3.1f%s%2.1f%s%s",": Mean ArrivalTime: ",mean," greater than ",fTimeUpperLimit,
    1120                     " FADC slices from upper edge in pixel ",hist.GetName()) << endl;
     1118      *fLog << warn
     1119            << Form("%s%3.1f%s%2.1f%s%s","Mean ArrivalTime=",mean," > ",fTimeUpperLimit,
     1120                    " slices from upper edge in pixel ",hist.GetName()) << endl;
    11211121      bad.SetUncalibrated( MBadPixelsPix::kMeanTimeInLast2Bins );
    11221122    }
  • trunk/MagicSoft/Mars/mhcalib/MHCalibrationRelTimeCam.cc

    r5137 r5156  
    436436      if (overflow > 0.1)
    437437        {
    438           *fLog << warn << GetDescriptor()
    439                 << ": HiGain Histogram Overflow occurred " << overflow
    440                 << " times in pixel: " << i << " (without saturation!) " << endl;
     438          *fLog << warn << "HiGain Hist-overflow occurred " << overflow
     439                << " times in pix: " << i << " (w/o saturation!) " << endl;
    441440          //          bad.SetUncalibrated( MBadPixelsPix::kHiGainOverFlow );
    442441        }
     
    445444      if (overflow > 0.1)
    446445        {
    447           *fLog << warn << GetDescriptor()
    448                 << ": HiGain Histogram Underflow occurred " << overflow
    449                 << " times in pixel: " << i << " (without saturation!) " << endl;
     446          *fLog << warn << "HiGain Hist-underflow occurred " << overflow
     447                << " times in pix: " << i << " (w/o saturation!) " << endl;
    450448          //          bad.SetUncalibrated( MBadPixelsPix::kHiGainOverFlow );
    451449        }
Note: See TracChangeset for help on using the changeset viewer.