Changeset 8243 for trunk/MagicSoft/Mars/mhcalib
- Timestamp:
- 01/11/07 14:15:24 (18 years ago)
- Location:
- trunk/MagicSoft/Mars/mhcalib
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mhcalib/MHCalibrationCam.cc
r8203 r8243 1259 1259 if (hist.IsEmpty()) 1260 1260 { 1261 *fLog << warn << "Pixel 1261 *fLog << warn << "Pixel " << setw(4) << pix.GetPixId() << ": Hi-Gain histogram empty." << endl; 1262 1262 return; 1263 1263 } 1264 1264 if (hist.IsOnlyOverflow()) 1265 1265 { 1266 *fLog << warn << "Pixel 1266 *fLog << warn << "Pixel " << setw(4) << pix.GetPixId() << ": Hi-Gain histogram contains only overflows." << endl; 1267 1267 return; 1268 1268 } 1269 1269 if (hist.IsOnlyUnderflow()) 1270 1270 { 1271 *fLog << warn << "Pixel 1271 *fLog << warn << "Pixel " << setw(4) << pix.GetPixId() << ": Hi-Gain histogram contains only underflows." << endl; 1272 1272 return; 1273 1273 } … … 1366 1366 if (hist.IsOnlyOverflow()) 1367 1367 { 1368 *fLog << warn << "Pixel 1368 *fLog << warn << "Pixel " << setw(4) << pix.GetPixId() << ": Lo-Gain histogram contains only overflows." << endl; 1369 1369 return; 1370 1370 } 1371 1371 if (hist.IsOnlyUnderflow()) 1372 1372 { 1373 *fLog << warn << "Pixel 1373 *fLog << warn << "Pixel " << setw(4) << pix.GetPixId() << ": Lo-Gain histogram contains only underflows." << endl; 1374 1374 return; 1375 1375 } -
trunk/MagicSoft/Mars/mhcalib/MHCalibrationChargeCam.cc
r8210 r8243 1 1 /* ======================================================================== *\ 2 ! $Name: not supported by cvs2svn $:$Id: MHCalibrationChargeCam.cc,v 1.4 7 2006-11-02 19:50:53tbretz Exp $2 ! $Name: not supported by cvs2svn $:$Id: MHCalibrationChargeCam.cc,v 1.48 2007-01-11 14:14:37 tbretz Exp $ 3 3 ! -------------------------------------------------------------------------- 4 4 ! … … 960 960 if (histlo.GetSaturated() > fNumLoGainSaturationLimit*histlo.GetHGausHist()->GetEntries()) 961 961 { 962 *fLog << warn << "Pixel 962 *fLog << warn << "Pixel " << setw(4) << i << ": More than " << Form("%.1f%%", fNumLoGainSaturationLimit*100) << " lo-gains saturated." << endl; 963 963 bad.SetUncalibrated( MBadPixelsPix::kLoGainSaturation ); 964 964 if (IsOscillations()) … … 1020 1020 if (histlo.GetSaturated() > fNumLoGainSaturationLimit*histlo.GetHGausHist()->GetEntries()) 1021 1021 { 1022 *fLog << warn << "Area 1022 *fLog << warn << "Area " << setw(4) << j << ": More than " << Form("%.1f%%", fNumLoGainSaturationLimit*100) << " lo-gains saturated." << endl; 1023 1023 if (IsOscillations()) 1024 1024 histlo.CreateFourierSpectrum(); … … 1063 1063 if (histlo.GetSaturated() > fNumLoGainSaturationLimit*histlo.GetHGausHist()->GetEntries()) 1064 1064 { 1065 *fLog << warn << "Sector 1065 *fLog << warn << "Sector " << setw(4) << j << ": More than " << Form("%.1f%%", fNumLoGainSaturationLimit*100) << " lo-gains saturated." << endl; 1066 1066 bad.SetUncalibrated( MBadPixelsPix::kLoGainSaturation ); 1067 1067 if (IsOscillations())
Note:
See TracChangeset
for help on using the changeset viewer.