Changeset 8484 for trunk/MagicSoft/Mars/mcalib
- Timestamp:
- 05/10/07 13:16:56 (18 years ago)
- Location:
- trunk/MagicSoft/Mars/mcalib
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mcalib/MCalibrateData.cc
r8452 r8484 1 1 /* ======================================================================== *\ 2 ! $Name: not supported by cvs2svn $:$Id: MCalibrateData.cc,v 1.6 8 2007-04-27 10:04:46tbretz Exp $2 ! $Name: not supported by cvs2svn $:$Id: MCalibrateData.cc,v 1.69 2007-05-10 12:14:54 tbretz Exp $ 3 3 ! -------------------------------------------------------------------------- 4 4 ! … … 666 666 calibConv = -1.; 667 667 calibFFactor = -1.; 668 *fLog << warn << GetDescriptor() << ": WARNING -";669 *fLog << "Conv ersionfactor " << calibConv << " of Pixel " << pixidx << " out of range ]";668 *fLog << warn << GetDescriptor() << ": "; 669 *fLog << "Conv.factor " << calibConv << " of Pixel " << pixidx << " out of range ]"; 670 670 *fLog << fCalibConvMinLimit << "," << fCalibConvMaxLimit << "[... set to 0. " << endl; 671 671 } -
trunk/MagicSoft/Mars/mcalib/MCalibrationChargeCalc.cc
r8478 r8484 1 1 /* ======================================================================== *\ 2 ! $Name: not supported by cvs2svn $:$Id: MCalibrationChargeCalc.cc,v 1.17 8 2007-05-09 12:15:52tbretz Exp $2 ! $Name: not supported by cvs2svn $:$Id: MCalibrationChargeCalc.cc,v 1.179 2007-05-10 12:14:54 tbretz Exp $ 3 3 ! -------------------------------------------------------------------------- 4 4 ! … … 745 745 if (res<0) //FIXME!!! How does this happen? 746 746 { 747 *fLog << warn << "Pixel " << setw(4) << i << ": Abs-time r esolutioncould not be calculated." << endl;747 *fLog << warn << "Pixel " << setw(4) << i << ": Abs-time rms could not be calculated." << endl; 748 748 (*fBadPixels)[i].SetUncalibrated(MBadPixelsPix::kDeviatingTimeResolution); 749 749 continue; … … 753 753 if (res<=lolim || res>=hilim) 754 754 { 755 *fLog << warn << "Pixel " << setw(4) << i << ": Deviati ng abs-time resolution: "755 *fLog << warn << "Pixel " << setw(4) << i << ": Deviation from abs-time rms: " 756 756 << Form("%5.2f", res) << " out of range " 757 757 << Form("[%4.2f,%4.2f]", lolim, hilim) << endl; -
trunk/MagicSoft/Mars/mcalib/MCalibrationRelTimeCalc.cc
r8478 r8484 228 228 229 229 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:")); 231 231 PrintUncalibrated(MBadPixelsPix::kRelTimeOscillating, 232 232 "Pixels with changing Rel. Times over time:"); … … 308 308 if (res<0) //FIXME!!! How does this happen? 309 309 { 310 *fLog << warn << "Pixel " << setw(4) << i << ": Rel-time r esolutioncould not be calculated." << endl;310 *fLog << warn << "Pixel " << setw(4) << i << ": Rel-time rms could not be calculated." << endl; 311 311 (*fBadPixels)[i].SetUncalibrated(MBadPixelsPix::kDeviatingTimeResolution); 312 312 continue; … … 316 316 if (res<=lolim || res>=hilim) 317 317 { 318 *fLog << warn << "Pixel " << setw(4) << i << ": Deviati ng rel-time resolution: "318 *fLog << warn << "Pixel " << setw(4) << i << ": Deviation from rel-time rms: " 319 319 << Form("%5.2f", res) << " out of range " 320 320 << Form("[%4.2f,%4.2f]", lolim, hilim) << endl;
Note:
See TracChangeset
for help on using the changeset viewer.