Changeset 3090 for trunk/MagicSoft/Mars


Ignore:
Timestamp:
02/11/04 13:53:37 (21 years ago)
Author:
gaug
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r3089 r3090  
    44
    55                                                 -*-*- 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
    613 2004/02/11: Abelardo Moralejo
    714
  • trunk/MagicSoft/Mars/mcalib/MCalibrationCalc.cc

    r3084 r3090  
    116116const Byte_t MCalibrationCalc::fgSaturationLimit = 254;
    117117const Byte_t MCalibrationCalc::fgBlindPixelFirst = 3;
    118 const Byte_t MCalibrationCalc::fgBlindPixelLast  = 14;
     118const Byte_t MCalibrationCalc::fgBlindPixelLast  = 16;
    119119
    120120// --------------------------------------------------------------------------
     
    727727{
    728728
    729   Byte_t *start = ptr + fgBlindPixelFirst;
     729  Byte_t *start = ptr + fgBlindPixelFirst-1;
    730730  Byte_t *end   = ptr + fgBlindPixelLast;
    731731
     
    738738    {
    739739      sum += *ptr;
    740      
    741740      if (*ptr++ >= fgSaturationLimit)
    742741            sat++;
Note: See TracChangeset for help on using the changeset viewer.