Changeset 8561 for trunk/MagicSoft
- Timestamp:
- 06/15/07 14:01:51 (17 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r8560 r8561 19 19 -*-*- END OF LINE -*-*- 20 20 21 2007/06/15 Thomas Bretz 22 23 * mpedestal/MPedestalSubtractedEvt.cc: 24 - fixed a bug in the determination of the maximum slice. Only 25 each second slice was checked. This has been introduced with 26 the last change four weeks ago. 27 28 29 21 30 2007/06/15 Daniela Dorner 22 31 … … 130 139 * mjobs/MJob.cc: 131 140 - one more sanity check if MEnv is not valid 141 142 * Makefile: 143 - first compile the programs source code and then link the library 144 this make it much faster to debug the code of the program sources. 132 145 133 146 -
trunk/MagicSoft/Mars/mpedestal/MPedestalSubtractedEvt.cc
r8519 r8561 1 1 /* ======================================================================== *\ 2 ! $Name: not supported by cvs2svn $:$Id: MPedestalSubtractedEvt.cc,v 1. 4 2007-05-16 13:56:17 tbretz Exp $2 ! $Name: not supported by cvs2svn $:$Id: MPedestalSubtractedEvt.cc,v 1.5 2007-06-15 12:58:57 tbretz Exp $ 3 3 ! -------------------------------------------------------------------------- 4 4 ! … … 150 150 151 151 for (const Float_t *ptr=beg+1; ptr<=sam+last; ptr++) 152 if (* ++ptr>*max)152 if (*ptr>*max) 153 153 max = ptr; 154 154 … … 178 178 179 179 for (const Byte_t *ptr=beg+1; ptr<=sam+last; ptr++) 180 if (* ++ptr>*max)180 if (*ptr>*max) 181 181 max = ptr; 182 182
Note:
See TracChangeset
for help on using the changeset viewer.