Changeset 2699 for trunk/MagicSoft/Mars/manalysis/MCalibrationCalc.cc
- Timestamp:
- 12/17/03 18:41:32 (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/manalysis/MCalibrationCalc.cc
r2679 r2699 1 /* ======================================================================== *\1 /* ======================================================================== *\ 2 2 ! 3 3 ! * … … 279 279 MExtractedSignalPix &sig = (*fSignals)[pixid]; 280 280 MPedestalPix &ped = (*fPedestals)[pixid]; 281 Float_t pedrms = ped.GetPedestalRms();282 Float_t sumhi = sig.GetExtractedSignalHiGain();281 Float_t pedrms = ped.GetPedestalRms(); 282 Float_t sumhi = sig.GetExtractedSignalHiGain(); 283 283 284 284 if (sumhi < 15.*pedrms ) // cut at 3.5 sigma … … 320 320 321 321 if (!blindpixel.FillCharge(sumhi)) 322 *fLog << warn<<322 *fLog << err << 323 323 "Overflow or Underflow occurred filling Blind Pixel sum = " << sumhi << endl; 324 324 325 325 if (!blindpixel.FillTime((int)mtime)) 326 *fLog << warn<<326 *fLog << err << 327 327 "Overflow or Underflow occurred filling Blind Pixel time = " << mtime << endl; 328 328 … … 412 412 if (TESTBIT(fFlags,kUseBlindPixelFit)) 413 413 { 414 if (blindpixel.FitCharge()) 415 *fLog << err << dbginf << "Could not fit the blind pixel " << endl; 416 else 417 *fLog << err << dbginf << "Could not fit the blind pixel " << endl; 418 419 if (!blindpixel.FitTime()) 420 *fLog << warn << "Could not the Times of the blind pixel " << endl; 414 415 if (!blindpixel.FitCharge()) 416 *fLog << err << dbginf << "Could not fit the blind pixel " << endl; 421 417 422 418 blindpixel.Draw();
Note:
See TracChangeset
for help on using the changeset viewer.