Ignore:
Timestamp:
05/10/07 13:16:56 (17 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mcalib
Files:
3 edited

Legend:

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

    r8452 r8484  
    11/* ======================================================================== *\
    2 ! $Name: not supported by cvs2svn $:$Id: MCalibrateData.cc,v 1.68 2007-04-27 10:04:46 tbretz Exp $
     2! $Name: not supported by cvs2svn $:$Id: MCalibrateData.cc,v 1.69 2007-05-10 12:14:54 tbretz Exp $
    33! --------------------------------------------------------------------------
    44!
     
    666666            calibConv    = -1.;
    667667            calibFFactor = -1.;
    668             *fLog << warn << GetDescriptor() << ": WARNING - ";
    669             *fLog << "Conversion factor " << calibConv << " of Pixel " << pixidx << " out of range ]";
     668            *fLog << warn << GetDescriptor() << ": ";
     669            *fLog << "Conv.factor " << calibConv << " of Pixel " << pixidx << " out of range ]";
    670670            *fLog << fCalibConvMinLimit << "," << fCalibConvMaxLimit << "[... set to 0. " << endl;
    671671          }
  • trunk/MagicSoft/Mars/mcalib/MCalibrationChargeCalc.cc

    r8478 r8484  
    11/* ======================================================================== *\
    2 ! $Name: not supported by cvs2svn $:$Id: MCalibrationChargeCalc.cc,v 1.178 2007-05-09 12:15:52 tbretz Exp $
     2! $Name: not supported by cvs2svn $:$Id: MCalibrationChargeCalc.cc,v 1.179 2007-05-10 12:14:54 tbretz Exp $
    33! --------------------------------------------------------------------------
    44!
     
    745745            if (res<0) //FIXME!!! How does this happen?
    746746            {
    747                 *fLog << warn << "Pixel  " << setw(4) << i << ": Abs-time resolution could not be calculated." << endl;
     747                *fLog << warn << "Pixel  " << setw(4) << i << ": Abs-time rms could not be calculated." << endl;
    748748                (*fBadPixels)[i].SetUncalibrated(MBadPixelsPix::kDeviatingTimeResolution);
    749749                continue;
     
    753753            if (res<=lolim || res>=hilim)
    754754            {
    755                 *fLog << warn << "Pixel  " << setw(4) << i << ": Deviating abs-time resolution: "
     755                *fLog << warn << "Pixel  " << setw(4) << i << ": Deviation from abs-time rms: "
    756756                    << Form("%5.2f", res) << " out of range "
    757757                    << Form("[%4.2f,%4.2f]", lolim, hilim) << endl;
  • trunk/MagicSoft/Mars/mcalib/MCalibrationRelTimeCalc.cc

    r8478 r8484  
    228228
    229229  PrintUncalibrated(MBadPixelsPix::kDeviatingTimeResolution,   
    230                     Form("%s%2.1f%s","Time resol. less than ", fRelTimeResolutionLimit, " med-dev from median:"));
     230                    Form("%s%2.1f%s","Rel.time rms more than ", fRelTimeResolutionLimit, " dev from median:"));
    231231  PrintUncalibrated(MBadPixelsPix::kRelTimeOscillating,   
    232232                    "Pixels with changing Rel. Times over time:");
     
    308308            if (res<0) //FIXME!!! How does this happen?
    309309            {
    310                 *fLog << warn << "Pixel  " << setw(4) << i << ": Rel-time resolution could not be calculated." << endl;
     310                *fLog << warn << "Pixel  " << setw(4) << i << ": Rel-time rms could not be calculated." << endl;
    311311                (*fBadPixels)[i].SetUncalibrated(MBadPixelsPix::kDeviatingTimeResolution);
    312312                continue;
     
    316316            if (res<=lolim || res>=hilim)
    317317            {
    318                 *fLog << warn << "Pixel  " << setw(4) << i << ": Deviating rel-time resolution: "
     318                *fLog << warn << "Pixel  " << setw(4) << i << ": Deviation from rel-time rms: "
    319319                    << Form("%5.2f", res) << " out of range "
    320320                    << Form("[%4.2f,%4.2f]", lolim, hilim) << endl;
Note: See TracChangeset for help on using the changeset viewer.