Changeset 5701 for trunk/MagicSoft/Mars/mcalib/MCalibrationChargeCalc.cc
- Timestamp:
- 01/05/05 14:29:59 (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mcalib/MCalibrationChargeCalc.cc
r5682 r5701 810 810 Form("%s%2.1f%s","Signal Error bigger than ",fChargeRelErrLimit," times Mean Signal: ")); 811 811 PrintUncalibrated(MBadPixelsPix::kLoGainSaturation, 812 " Pixels with Low Gain Saturation:");812 "Low Gain Saturation: "); 813 813 PrintUncalibrated(MBadPixelsPix::kMeanTimeInFirstBin, 814 814 Form("%s%2.1f%s","Mean Abs. Arr. Time in First ",1.," Bin(s): ")); … … 824 824 825 825 PrintUncalibrated(MBadPixelsPix::kChargeSigmaNotValid, 826 "Signal Sigma smaller than Pedestal RMS: 826 "Signal Sigma smaller than Pedestal RMS: "); 827 827 PrintUncalibrated(MBadPixelsPix::kHiGainOscillating, 828 " Pixels with changing Hi Gain signal over time:");828 "Changing Hi Gain signal over time: "); 829 829 PrintUncalibrated(MBadPixelsPix::kLoGainOscillating, 830 " Pixels with changing Lo Gain signal over time:");830 "Changing Lo Gain signal over time: "); 831 831 PrintUncalibrated(MBadPixelsPix::kHiGainNotFitted, 832 " Pixels with unsuccesful Gauss fit to the Hi Gain:");832 "Unsuccesful Gauss fit to the Hi Gain: "); 833 833 PrintUncalibrated(MBadPixelsPix::kLoGainNotFitted, 834 " Pixels with unsuccesful Gauss fit to the Lo Gain:");834 "Unsuccesful Gauss fit to the Lo Gain: "); 835 835 PrintUncalibrated(MBadPixelsPix::kDeviatingNumPhes, 836 " Pixels with deviating number of phes:");836 "Deviating number of phes: "); 837 837 PrintUncalibrated(MBadPixelsPix::kDeviatingFFactor, 838 " Pixels with deviating F-Factor:");838 "Deviating F-Factor: "); 839 839 840 840 if (!fOutputFile.IsNull()) … … 1218 1218 } 1219 1219 1220 *fLog << inf << GetDescriptor() << ": Mean number of photo-electrons " 1221 << "with area idx " << i << ": " 1220 *fLog << inf << GetDescriptor() << ": Mean number of phes with area idx " << i << ": " 1222 1221 << Form("%7.2f+-%6.2f",mean,sigma) << endl; 1223 1222 … … 1265 1264 if ( nphe < lowlim[aidx] || nphe > upplim[aidx] ) 1266 1265 { 1267 *fLog << warn << GetDescriptor() << ": Number of phes: "1266 *fLog << warn << "Number of phes: " 1268 1267 << Form("%7.2f out of %3.1f sigma limit: ",nphe,fPheErrLimit) 1269 1268 << Form("[%7.2f,%7.2f] pixel%4i",lowlim[aidx],upplim[aidx],i) << endl; … … 1321 1320 1322 1321 *fLog << inf << GetDescriptor() 1323 << ": Average total number phes in area idx " << aidx << ": "1322 << ": Average total phes for area idx " << aidx << ": " 1324 1323 << Form("%7.2f +- 6.2f",areaphes[aidx],TMath::Sqrt(areaweights[aidx])) << endl; 1325 1324 … … 1356 1355 { 1357 1356 *fLog << warn << GetDescriptor() 1358 <<": Mean number phes perarea for sector " << sector << " could not be calculated: "1357 <<": Mean number phes/area for sector " << sector << " could not be calculated: " 1359 1358 << " Mean: " << sectorphes[sector] 1360 1359 << " Variance: " << sectorweights[sector] << endl; … … 1364 1363 1365 1364 *fLog << inf << GetDescriptor() 1366 << ": Av erage number phes per area in sector " << sector << ": "1367 << Form("%5.3f+-%4.3f [phe/mm^2]",sectorphes[sector],TMath::Sqrt(sectorweights[sector]))1365 << ": Avg number phes/mm^2 in sector " << sector << ": " 1366 << Form("%5.3f+-%4.3f",sectorphes[sector],TMath::Sqrt(sectorweights[sector])) 1368 1367 << endl; 1369 1368 … … 1758 1757 if ( ffactor < lowlim[aidx] || ffactor > upplim[aidx] ) 1759 1758 { 1760 *fLog << warn << GetDescriptor() << ":Overall F-Factor "1759 *fLog << warn << "Overall F-Factor " 1761 1760 << Form("%5.2f",ffactor) << " out of range [" 1762 << Form("%5.2f,%5.2f",lowlim[aidx],upplim[aidx]) << "] pixel " << i << endl;1761 << Form("%5.2f,%5.2f",lowlim[aidx],upplim[aidx]) << "] Pixel " << i << endl; 1763 1762 1764 1763 bad.SetUncalibrated( MBadPixelsPix::kDeviatingFFactor );
Note:
See TracChangeset
for help on using the changeset viewer.