Changeset 7023 for trunk/MagicSoft/Mars/mcalib
- Timestamp:
- 05/12/05 19:25:58 (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mcalib/MCalibrationChargeCalc.cc
r7017 r7023 984 984 if (cal.GetSigma() < cal.GetPedRms()) 985 985 { 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; 989 990 bad.SetUncalibrated( MBadPixelsPix::kChargeSigmaNotValid ); 990 991 return kFALSE; … … 993 994 if (!cal.CalcReducedSigma()) 994 995 { 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()) 998 998 << endl; 999 999 bad.SetUncalibrated( MBadPixelsPix::kChargeSigmaNotValid ); … … 1003 1003 if (!cal.CalcFFactor()) 1004 1004 { 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()) 1008 1007 << endl; 1009 1008 bad.SetUncalibrated(MBadPixelsPix::kDeviatingNumPhes); … … 1021 1020 if (!cal.CalcConvFFactor()) 1022 1021 { 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()) 1026 1024 << endl; 1027 1025 bad.SetUncalibrated(MBadPixelsPix::kDeviatingNumPhes);
Note:
See TracChangeset
for help on using the changeset viewer.