Changeset 3090
- Timestamp:
- 02/11/04 13:53:37 (21 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r3089 r3090 4 4 5 5 -*-*- END OF LINE -*-*- 6 2004/02/11: Markus Gaug 7 * mcalib/MCalibrationCalc.cc 8 - the blind pixel signal extractor introduced one week ago, counted 9 one FADC slice too little, thus the normalization w.r.t. pedestals 10 was wrong. Now corrected. 11 12 6 13 2004/02/11: Abelardo Moralejo 7 14 -
trunk/MagicSoft/Mars/mcalib/MCalibrationCalc.cc
r3084 r3090 116 116 const Byte_t MCalibrationCalc::fgSaturationLimit = 254; 117 117 const Byte_t MCalibrationCalc::fgBlindPixelFirst = 3; 118 const Byte_t MCalibrationCalc::fgBlindPixelLast = 1 4;118 const Byte_t MCalibrationCalc::fgBlindPixelLast = 16; 119 119 120 120 // -------------------------------------------------------------------------- … … 727 727 { 728 728 729 Byte_t *start = ptr + fgBlindPixelFirst ;729 Byte_t *start = ptr + fgBlindPixelFirst-1; 730 730 Byte_t *end = ptr + fgBlindPixelLast; 731 731 … … 738 738 { 739 739 sum += *ptr; 740 741 740 if (*ptr++ >= fgSaturationLimit) 742 741 sat++;
Note:
See TracChangeset
for help on using the changeset viewer.