Changeset 6328


Ignore:
Timestamp:
02/10/05 01:28:54 (20 years ago)
Author:
gaug
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r6326 r6328  
    6363   * msignal/MExtractTimeAndChargeDigitalFilterPeakSearch.cc
    6464     - initialize the bad events counters to 0 also in constructor
     65     - release the limit for bad events a bit
     66
    6567
    6668 2005/02/08 Markus Gaug
  • trunk/MagicSoft/Mars/msignal/MExtractTimeAndChargeDigitalFilterPeakSearch.cc

    r6327 r6328  
    8282const Byte_t MExtractTimeAndChargeDigitalFilterPeakSearch::fgOffsetRightFromPeak     =  3;
    8383const Byte_t MExtractTimeAndChargeDigitalFilterPeakSearch::fgPeakSearchWindowSize    =  2;
    84 const Int_t  MExtractTimeAndChargeDigitalFilterPeakSearch::fgHiGainFailureLimit      =  5;
    85 const Int_t  MExtractTimeAndChargeDigitalFilterPeakSearch::fgLoGainFailureLimit      = 10;
     84const Int_t  MExtractTimeAndChargeDigitalFilterPeakSearch::fgHiGainFailureLimit      = 10;
     85const Int_t  MExtractTimeAndChargeDigitalFilterPeakSearch::fgLoGainFailureLimit      = 15;
    8686// --------------------------------------------------------------------------
    8787//
     
    294294
    295295  Byte_t higainfirst     = fHiGainFirst;
     296  UInt_t peakpixel       = 0;
    296297
    297298  while (pixel.Next())
     
    310311          maxsumhi     = sumhi;
    311312          higainfirst  = fHiGainFirst + startslice;
     313          peakpixel    = pixel.GetPixelId();
    312314        }
    313315      else if (sat)
     
    331333  else
    332334    {
    333       //      *fLog << err << (Int_t)higainfirst << "   " << (int)fHiGainFirst << "  " << (int)fOffsetLeftFromPeak << endl;     
     335      //      *fLog << err << (Int_t)higainfirst << "   " << peakpixel << endl;     
    334336      fHiGainOutOfRangeLeft++;
    335337    }
     
    350352    {
    351353      fHiGainOutOfRangeRight++;
    352       //      *fLog << err << (Int_t)higainfirst << endl;
     354      //      *fLog << err << (Int_t)higainfirst << "   " << peakpixel << endl;     
    353355    }
    354356 
Note: See TracChangeset for help on using the changeset viewer.