Changeset 6067
- Timestamp:
- 01/28/05 09:47:26 (20 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r6066 r6067 20 20 21 21 -*-*- END OF LINE -*-*- 22 2005/01/28 Markus Gaug 23 24 * msignal/MExtractTimeAndChargeDigitalFilter.cc 25 - introduce a security check for the time fine adjustment in case, 26 it is too large. 27 28 22 29 2005/01/28 Abelardo Moralejo 23 30 … … 52 59 * callisto.rc 53 60 - updated conf. file 54 55 61 56 62 -
trunk/MagicSoft/Mars/msignal/MExtractTimeAndChargeDigitalFilter.cc
r6062 r6067 532 532 533 533 time = max_p + fTimeShiftLoGain + (Float_t)fLoGainFirst /* this shifts the time to the start of the rising edge */ 534 - ((Float_t)t_iter)/fBinningResolutionLoGain - time_sum/sum; 534 - ((Float_t)t_iter)/fBinningResolutionLoGain; 535 536 const Float_t timefineadjust = time_sum/sum; 537 538 if (timefineadjust < 2./fBinningResolutionLoGain) 539 time -= timefineadjust; 540 535 541 } 536 542
Note:
See TracChangeset
for help on using the changeset viewer.