Changeset 3763


Ignore:
Timestamp:
04/16/04 10:54:41 (20 years ago)
Author:
gaug
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r3762 r3763  
    1818
    1919                                                 -*-*- END OF LINE -*-*-
     20 2004/04/16: Markus Gaug
     21
     22   * msignal/MExtractSignal.cc
     23     - commited proposed larger default window from fgLast = 10 to
     24       fgLast = 14, because in March the pulses have moved to later
     25       arrival times.
     26
     27   * msignal/MExtractSignal2.cc
     28     - committed the proposed smaller window egdes from fgFirst=0 to
     29       fgFirst = 3, because in March some of the high-gain pulses reach
     30       into the "low-gain samples" and mislead thus sliding window to
     31       be maximized on the tail of the high-gain pulse.
     32
     33
     34
    2035 2004/04/15: Markus Gaug
    2136
  • trunk/MagicSoft/Mars/manalysis/MPedPhotCalc.cc

    r3761 r3763  
    159159       const MCerPhotPix &pix = (*fCerPhot)[i];
    160160
    161         if (fBadPixels)
    162           {
    163             const MBadPixelsPix &bad = (*fBadPixels)[i];
    164             if (bad.IsBad())
    165               continue;
    166           }
    167 
    168         const Float_t nphot = pix.GetNumPhotons();
    169 
    170         fSumx[i]  += nphot;
    171         fSumx2[i] += nphot*nphot;
     161       const Float_t nphot = pix.GetNumPhotons();
     162       
     163       fSumx[i]  += nphot;
     164       fSumx2[i] += nphot*nphot;
    172165    }
    173166
  • trunk/MagicSoft/Mars/msignal/MExtractSignal.cc

    r3558 r3763  
    5353const Byte_t MExtractSignal::fgSaturationLimit = 254;
    5454const Byte_t MExtractSignal::fgFirst =  3;
    55 const Byte_t MExtractSignal::fgLast  = 10;
    56 
     55const Byte_t MExtractSignal::fgLast  = 14;
    5756// --------------------------------------------------------------------------
    5857//
  • trunk/MagicSoft/Mars/msignal/MExtractSignal2.cc

    r3558 r3763  
    5757
    5858const Byte_t MExtractSignal2::fgSaturationLimit = 254;
    59 const Byte_t MExtractSignal2::fgFirst  =  0;
    60 const Byte_t MExtractSignal2::fgLast   = 14;
     59const Byte_t MExtractSignal2::fgFirst      =  3;
     60const Byte_t MExtractSignal2::fgLast       = 14;
    6161const Byte_t MExtractSignal2::fgWindowSize = 6;
    62 
    6362// --------------------------------------------------------------------------
    6463//
Note: See TracChangeset for help on using the changeset viewer.