Ignore:
Timestamp:
10/23/06 13:27:21 (18 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mhcalib/MHCalibrationPulseTimeCam.cc

    r7430 r8147  
    414414      Byte_t *end   = start + pixel.GetNumHiGainSamples();
    415415      Byte_t *p     = start;
    416       Byte_t max    = 0;
     416      Byte_t *max   = start;
    417417      Int_t  maxpos = 0;
    418418
    419419      while (p < end)
    420420        {
    421           if ((*p > max) && (*p < fSaturationLimit))
     421          if (*p > *max)
    422422            {
    423               max = *p;
     423              max = p;
    424424              maxpos = p-start-1;
    425425            }
     
    433433      while (p < end)
    434434        {
    435           if ((*p > max) && (*p < fSaturationLimit))
     435          if (*p > *max)
    436436            {
    437               max = *p;
     437              max = p;
    438438              maxpos = p-start+pixel.GetNumHiGainSamples() - 1;
    439439            }
     
    441441        }
    442442
    443       if (max < fLowerSignalLimit)
     443      if (*max < fLowerSignalLimit || *max > fSaturationLimit)
    444444        continue;
    445445
Note: See TracChangeset for help on using the changeset viewer.