Changeset 5547
- Timestamp:
- 12/02/04 14:11:34 (20 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r5544 r5547 21 21 -*-*- END OF LINE -*-*- 22 22 23 2004/12/01: Markus Gaug and Thomas Schweizer 24 25 * mpedestal/MPedCalcFromLoGain.cc 26 - introduce a check which does not allow the last slice of the 27 check window to be smaller than the last slice of the 28 extraction window. 29 30 23 31 2004/12/01: Markus Gaug 24 32 25 * MExtractTimeAndChargeSpline.[h,cc]:33 * msignal/MExtractTimeAndChargeSpline.[h,cc]: 26 34 - introduced a random iterator for the "pedestal" calculation of 27 35 the amplitude spline. 28 36 29 37 30 * MExtractTimeAndChargeDigitalFilter.cc:38 * msignal/MExtractTimeAndChargeDigitalFilter.cc: 31 39 - fixed bug in the loop over the weights which can cause a call to 32 40 an array index out of range. Since MArrays are used, this call … … 38 46 2004/11/30: Thomas Bretz 39 47 40 * MExtractTimeAndChargeDigitalFilter.cc:48 * msignal/MExtractTimeAndChargeDigitalFilter.cc: 41 49 - InitArrays: added missing return statement 42 50 -
trunk/MagicSoft/Mars/mpedestal/MPedCalcFromLoGain.cc
r5507 r5547 267 267 if (fCheckWinLast > lastavailable) //changed to override check 268 268 { 269 *fLog << warn << GetDescriptor() ;270 *fLog << " - WARNING: Last Check Window slice out of range...adjusting to last available slice ";271 *fLog<< lastavailable << endl;269 *fLog << warn << GetDescriptor() 270 << " - WARNING: Last Check Window slice out of range...adjusting to last available slice " 271 << lastavailable << endl; 272 272 273 273 fCheckWinLast = lastavailable; 274 } 275 276 if (fCheckWinLast < fExtractWinLast) 277 { 278 *fLog << warn << GetDescriptor() 279 << " - WARNING: Last Check Window slice lower than extraction window " 280 << " - push it up to last number of low-gain samples: "; 281 fCheckWinLast = fExtractWinLast; 282 *fLog << fCheckWinLast << endl; 274 283 } 275 284
Note:
See TracChangeset
for help on using the changeset viewer.