Changeset 4116
- Timestamp:
- 05/21/04 17:09:31 (20 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r4115 r4116 37 37 - put MGeomCamMagic into the plist (MGeomApply complained not to 38 38 find the GeomCam( 39 40 * msignal/MExtractFixedWindowPeakSearch.cc 41 - fixed a bug affecting signals with late arrival times which use 42 the variable fHiLoLast. 43 - set back fgOffsetFromPeak from peak to 1 (instead of 2). Abelardo 44 explained that this variable is not strictly the offset from the 45 peak but the offset from the peak search window. 39 46 40 47 -
trunk/MagicSoft/Mars/msignal/MExtractFixedWindowPeakSearch.cc
r3951 r4116 82 82 const Byte_t MExtractFixedWindowPeakSearch::fgLoGainWindowSize = 6; 83 83 const Byte_t MExtractFixedWindowPeakSearch::fgPeakSearchWindowSize = 4; 84 const Byte_t MExtractFixedWindowPeakSearch::fgOffsetFromPeak = 2;84 const Byte_t MExtractFixedWindowPeakSearch::fgOffsetFromPeak = 1; 85 85 // -------------------------------------------------------------------------- 86 86 // … … 359 359 // "startslice" will mark the slice at which the highest sum begins for that pixel. 360 360 // Then define the beginning of the integration window for ALL pixels as the slice 361 // before that: startslice-fOffsetFr aomPeak, unless of course startslice-fOffsetFromPeak<=0,361 // before that: startslice-fOffsetFromPeak, unless of course startslice-fOffsetFromPeak<=0, 362 362 // in which case we start at 0. We will also check that the integration window does not 363 363 // go beyond the FADC limits. … … 373 373 Byte_t hiGainFirst = 0; 374 374 Byte_t loGainFirst = 0; 375 Byte_t hilolastsave = fHiLoLast; 375 376 376 377 while (pixel.Next()) … … 447 448 448 449 450 fHiLoLast = hilolastsave; 449 451 fSignals->SetReadyToSave(); 450 452
Note:
See TracChangeset
for help on using the changeset viewer.