Changeset 8580 for trunk/MagicSoft/Mars/mcalib
- Timestamp:
- 06/18/07 15:37:24 (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mcalib/MCalibrationChargeCalc.cc
r8544 r8580 1 1 /* ======================================================================== *\ 2 ! $Name: not supported by cvs2svn $:$Id: MCalibrationChargeCalc.cc,v 1.18 1 2007-06-11 15:35:14tbretz Exp $2 ! $Name: not supported by cvs2svn $:$Id: MCalibrationChargeCalc.cc,v 1.182 2007-06-18 14:36:16 tbretz Exp $ 3 3 ! -------------------------------------------------------------------------- 4 4 ! … … 746 746 { 747 747 *fLog << warn << "Pixel " << setw(4) << i << ": Abs-time rms could not be calculated." << endl; 748 (*fBadPixels)[i].SetUncalibrated(MBadPixelsPix::kDeviating TimeResolution);748 (*fBadPixels)[i].SetUncalibrated(MBadPixelsPix::kDeviatingAbsTimeResolution); 749 749 continue; 750 750 } … … 753 753 { 754 754 *fLog << warn << "Pixel " << setw(4) << i << ": Abs-time rms==0." << endl; 755 (*fBadPixels)[i].SetUncalibrated(MBadPixelsPix::kDeviating TimeResolution);755 (*fBadPixels)[i].SetUncalibrated(MBadPixelsPix::kDeviatingAbsTimeResolution); 756 756 continue; 757 757 } … … 764 764 << Form("[%4.2f,%4.2f]", lolim, hilim) << endl; 765 765 766 (*fBadPixels)[i].SetUncalibrated(MBadPixelsPix::k FluctuatingArrivalTimes);766 (*fBadPixels)[i].SetUncalibrated(MBadPixelsPix::kDeviatingAbsTimeResolution); 767 767 } 768 768 } … … 949 949 PrintUncalibrated(MBadPixelsPix::kLoGainOverFlow, 950 950 "Pixels with Low Gain Overflow : "); 951 PrintUncalibrated(MBadPixelsPix::kFluctuatingArrivalTimes, 952 "Fluctuating Pulse Arrival Times: "); 951 // PrintUncalibrated(MBadPixelsPix::kFluctuatingArrivalTimes, 952 // "Fluctuating Pulse Arrival Times: "); 953 PrintUncalibrated(MBadPixelsPix::kDeviatingAbsTimeResolution, 954 Form("%s%2.1f%s ","Abs.time rms more than ", fArrTimeRmsLimit, " dev from median: ")); 953 955 PrintUncalibrated(MBadPixelsPix::kDeadPedestalRms, 954 956 "Presumably dead from Pedestal Rms: "); … … 1245 1247 if (IsCheckArrivalTimes()) 1246 1248 { 1247 if (bad.IsUncalibrated( MBadPixelsPix::k FluctuatingArrivalTimes))1249 if (bad.IsUncalibrated( MBadPixelsPix::kDeviatingAbsTimeResolution )) 1248 1250 bad.SetUnsuitable( MBadPixelsPix::kUnsuitableRun ); 1251 //if (bad.IsUncalibrated( MBadPixelsPix::kFluctuatingArrivalTimes )) 1252 // bad.SetUnsuitable( MBadPixelsPix::kUnsuitableRun ); 1249 1253 } 1250 1254
Note:
See TracChangeset
for help on using the changeset viewer.