Changeset 3763 for trunk/MagicSoft
- Timestamp:
- 04/16/04 10:54:41 (21 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r3762 r3763 18 18 19 19 -*-*- 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 20 35 2004/04/15: Markus Gaug 21 36 -
trunk/MagicSoft/Mars/manalysis/MPedPhotCalc.cc
r3761 r3763 159 159 const MCerPhotPix &pix = (*fCerPhot)[i]; 160 160 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; 172 165 } 173 166 -
trunk/MagicSoft/Mars/msignal/MExtractSignal.cc
r3558 r3763 53 53 const Byte_t MExtractSignal::fgSaturationLimit = 254; 54 54 const Byte_t MExtractSignal::fgFirst = 3; 55 const Byte_t MExtractSignal::fgLast = 10; 56 55 const Byte_t MExtractSignal::fgLast = 14; 57 56 // -------------------------------------------------------------------------- 58 57 // -
trunk/MagicSoft/Mars/msignal/MExtractSignal2.cc
r3558 r3763 57 57 58 58 const Byte_t MExtractSignal2::fgSaturationLimit = 254; 59 const Byte_t MExtractSignal2::fgFirst = 0;60 const Byte_t MExtractSignal2::fgLast = 14;59 const Byte_t MExtractSignal2::fgFirst = 3; 60 const Byte_t MExtractSignal2::fgLast = 14; 61 61 const Byte_t MExtractSignal2::fgWindowSize = 6; 62 63 62 // -------------------------------------------------------------------------- 64 63 //
Note:
See TracChangeset
for help on using the changeset viewer.