Ignore:
Timestamp:
05/12/05 19:25:58 (20 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

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

    r7017 r7023  
    984984  if (cal.GetSigma() < cal.GetPedRms())
    985985    {
    986       *fLog << warn
    987             << Form("Sigma of Fitted Charge: %6.2f <",cal.GetSigma())
    988             << Form(" Ped. RMS=%5.2f in %s%3i",cal.GetPedRms(),what,cal.GetPixId()) << endl;
     986      *fLog << warn << "Sigma of Fitted Charge: "
     987            << Form("%6.2f <",cal.GetSigma()) << " Ped. RMS="
     988            << Form("%5.2f", cal.GetPedRms()) << " in " << what
     989            << Form("%3i",cal.GetPixId()) << endl;
    989990      bad.SetUncalibrated( MBadPixelsPix::kChargeSigmaNotValid );
    990991      return kFALSE;
     
    993994  if (!cal.CalcReducedSigma())
    994995    {
    995       *fLog << warn
    996             << Form("Could not calculate the reduced sigma in %s:               ",what)
    997             << Form("         %4i",cal.GetPixId())
     996      *fLog << warn << "Could not calculate the reduced sigma in " << what
     997            << ":                        " << Form("%4i",cal.GetPixId())
    998998            << endl;
    999999      bad.SetUncalibrated( MBadPixelsPix::kChargeSigmaNotValid );
     
    10031003  if (!cal.CalcFFactor())
    10041004    {
    1005       *fLog << warn
    1006             << Form("Could not calculate the F-Factor in %s:                    ",what)
    1007             << Form("         %4i",cal.GetPixId())
     1005      *fLog << warn << "Could not calculate the F-Factor in " << what
     1006            << ":                             " << Form("%4i",cal.GetPixId())
    10081007            << endl;
    10091008      bad.SetUncalibrated(MBadPixelsPix::kDeviatingNumPhes);
     
    10211020  if (!cal.CalcConvFFactor())
    10221021    {
    1023       *fLog << warn
    1024             << Form("Could not calculate the Conv. FADC counts to Phes in %s:  ",what)
    1025             << Form("         %4i",cal.GetPixId())
     1022      *fLog << warn << "Could not calculate the Conv. FADC counts to Phes in "
     1023            << what << ":           " << Form("%4i",cal.GetPixId())
    10261024            << endl;
    10271025      bad.SetUncalibrated(MBadPixelsPix::kDeviatingNumPhes);
Note: See TracChangeset for help on using the changeset viewer.