Changeset 5156 for trunk/MagicSoft/Mars/mhcalib
- Timestamp:
- 10/01/04 16:41:51 (21 years ago)
- Location:
- trunk/MagicSoft/Mars/mhcalib
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mhcalib/MHCalibrationChargeCam.cc
r5151 r5156 923 923 if (overflow > 0.1) 924 924 { 925 *fLog << warn << GetDescriptor()926 << " : HiGain Histogram Overflow occurred " << overflow927 << " times in pix el: " << i << " (withoutsaturation!) " << endl;925 *fLog << warn 926 << "HiGain Hist-overflow " << overflow 927 << " times in pix: " << i << " (w/o saturation!) " << endl; 928 928 bad.SetUncalibrated( MBadPixelsPix::kHiGainOverFlow ); 929 929 } … … 932 932 if (overflow > 0.1) 933 933 { 934 *fLog << warn << GetDescriptor()935 << " : HiGain Histogram Underflow occurred" << overflow936 << " times in pix el: " << i << " (withoutsaturation!) " << endl;934 *fLog << warn 935 << "HiGain Hist-underflow " << overflow 936 << " times in pix: " << i << " (w/o saturation!) " << endl; 937 937 bad.SetUncalibrated( MBadPixelsPix::kHiGainOverFlow ); 938 938 } … … 965 965 if (overflow > 0.1) 966 966 { 967 *fLog << warn << GetDescriptor()968 << " : LoGain Histogram Overflow occurred" << overflow969 << " times in pix el: " << i << " (withoutsaturation!) " << endl;967 *fLog << warn 968 << "LoGain Hist-overflow " << overflow 969 << " times in pix: " << i << " (w/o saturation!) " << endl; 970 970 bad.SetUncalibrated( MBadPixelsPix::kLoGainOverFlow ); 971 971 } … … 974 974 if (overflow > 0.1) 975 975 { 976 *fLog << warn << GetDescriptor()977 << " : LoGain Histogram Underflow occurred" << overflow978 << " times in pix el: " << i << " (withoutsaturation!) " << endl;976 *fLog << warn 977 << "LoGain Hist-underflow " << overflow 978 << " times in pix: " << i << " (w/o saturation!) " << endl; 979 979 bad.SetUncalibrated( MBadPixelsPix::kLoGainOverFlow ); 980 980 } … … 1108 1108 if ( mean < lowerlimit) 1109 1109 { 1110 *fLog << warn << GetDescriptor()1111 << Form("%s%3.1f%s%2.1f%s%s"," : Mean ArrivalTime: ",mean," smaller than",fTimeLowerLimit,1112 " FADCslices 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; 1113 1113 bad.SetUncalibrated( MBadPixelsPix::kMeanTimeInFirstBin ); 1114 1114 } … … 1116 1116 if ( mean > upperlimit ) 1117 1117 { 1118 *fLog << warn << GetDescriptor()1119 << Form("%s%3.1f%s%2.1f%s%s"," : Mean ArrivalTime: ",mean," greater than",fTimeUpperLimit,1120 " FADCslices 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; 1121 1121 bad.SetUncalibrated( MBadPixelsPix::kMeanTimeInLast2Bins ); 1122 1122 } -
trunk/MagicSoft/Mars/mhcalib/MHCalibrationRelTimeCam.cc
r5137 r5156 436 436 if (overflow > 0.1) 437 437 { 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; 441 440 // bad.SetUncalibrated( MBadPixelsPix::kHiGainOverFlow ); 442 441 } … … 445 444 if (overflow > 0.1) 446 445 { 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; 450 448 // bad.SetUncalibrated( MBadPixelsPix::kHiGainOverFlow ); 451 449 }
Note:
See TracChangeset
for help on using the changeset viewer.