Changeset 8580 for trunk/MagicSoft/Mars/mbadpixels
- Timestamp:
- 06/18/07 15:37:24 (18 years ago)
- Location:
- trunk/MagicSoft/Mars/mbadpixels
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mbadpixels/MBadPixelsCam.cc
r8446 r8580 1 1 /* ======================================================================== *\ 2 ! $Name: not supported by cvs2svn $:$Id: MBadPixelsCam.cc,v 1.5 0 2007-04-25 14:39:41tbretz Exp $2 ! $Name: not supported by cvs2svn $:$Id: MBadPixelsCam.cc,v 1.51 2007-06-18 14:35:39 tbretz Exp $ 3 3 ! -------------------------------------------------------------------------- 4 4 ! … … 455 455 *fLog << endl; 456 456 457 // TO BE FIXED!!! 458 457 459 PrintBadPixels(MBadPixelsPix::kPreviouslyExcluded,"Previously excluded"); 458 460 PrintBadPixels(MBadPixelsPix::kChargeIsPedestal,"Signal smaller 3 Pedestal RMS"); … … 466 468 PrintBadPixels(MBadPixelsPix::kLoGainOverFlow,"Low-Gain Histogram Overflow"); 467 469 PrintBadPixels(MBadPixelsPix::kDeadPedestalRms,"Presumably dead from Ped. Rms"); 468 PrintBadPixels(MBadPixelsPix::kFluctuatingArrivalTimes,"Fluctuating Pulse Arrival Times");470 // PrintBadPixels(MBadPixelsPix::kFluctuatingArrivalTimes,"Fluctuating Pulse Arrival Times"); 469 471 470 472 *fLog << endl; 471 473 *fLog << all << "Unreliable pixels statistics:" << endl; 472 474 *fLog << endl; 475 476 // TO BE FIXED!!! 473 477 474 478 PrintBadPixels(MBadPixelsPix::kChargeSigmaNotValid,"Signal Sigma smaller Pedestal RMS"); -
trunk/MagicSoft/Mars/mbadpixels/MBadPixelsPix.h
r8478 r8580 48 48 kDeviatingNumPhots = BIT(15), 49 49 kDeviatingFFactor = BIT(16), 50 kDeviating TimeResolution = BIT(17),50 kDeviatingRelTimeResolution = BIT(17), 51 51 kConversionHiLoNotValid = BIT(18), 52 52 kHiGainOverFlow = BIT(19), … … 55 55 kHiLoOscillating = BIT(22), 56 56 kDeadPedestalRms = BIT(23), 57 k FluctuatingArrivalTimes= BIT(24),58 kLoGainBlackout = BIT(25) 57 kDeviatingAbsTimeResolution = BIT(24), 58 kLoGainBlackout = BIT(25), 59 59 }; 60 60 … … 107 107 if (IsUncalibrated( kDeadPedestalRms )) return 5; 108 108 if (IsUncalibrated( kDeviatingNumPhes )) return 6; 109 if (IsUncalibrated( kFluctuatingArrivalTimes)) return 7; 110 if (IsUncalibrated( kDeviatingTimeResolution)) return 8; 109 //if (IsUncalibrated( kFluctuatingArrivalTimes)) return 7; 110 if (IsUncalibrated( kDeviatingAbsTimeResolution)) return 7; 111 if (IsUncalibrated( kDeviatingRelTimeResolution)) return 8; 111 112 if (IsUncalibrated( kLoGainBlackout )) return 9; 112 113 if (IsUncalibrated( kPreviouslyExcluded )) return 10;
Note:
See TracChangeset
for help on using the changeset viewer.