Changeset 4449 for trunk/MagicSoft/Mars
- Timestamp:
- 08/04/04 11:01:26 (20 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r4448 r4449 23 23 * msignal/MExtractFixedWindowSpline.cc 24 24 - replaced delete's of the array by a delete []. 25 26 * mjobs/MJCalibration.cc 27 - replaced default time extractor by MExtractTimeFastSpline 25 28 26 29 -
trunk/MagicSoft/Mars/msignal/MExtractFixedWindowSpline.cc
r4340 r4449 78 78 79 79 if (fHiGainFirstDeriv) 80 delete fHiGainFirstDeriv;80 delete [] fHiGainFirstDeriv; 81 81 if (fLoGainFirstDeriv) 82 delete fLoGainFirstDeriv;82 delete [] fLoGainFirstDeriv; 83 83 if (fHiGainSecondDeriv) 84 delete fHiGainSecondDeriv;84 delete [] fHiGainSecondDeriv; 85 85 if (fLoGainSecondDeriv) 86 delete fLoGainSecondDeriv;86 delete [] fLoGainSecondDeriv; 87 87 88 88 } … … 186 186 187 187 if (fHiGainFirstDeriv) 188 delete fHiGainFirstDeriv;188 delete [] fHiGainFirstDeriv; 189 189 if (fLoGainFirstDeriv) 190 delete fLoGainFirstDeriv;190 delete [] fLoGainFirstDeriv; 191 191 if (fHiGainSecondDeriv) 192 delete fHiGainSecondDeriv;192 delete [] fHiGainSecondDeriv; 193 193 if (fLoGainSecondDeriv) 194 delete fLoGainSecondDeriv;194 delete [] fLoGainSecondDeriv; 195 195 196 196 Int_t range = fHiGainLast - fHiGainFirst + 1 + fHiLoLast; … … 232 232 Float_t pp; 233 233 Int_t i = 0; 234 235 fHiGainSecondDeriv[0] = 0.;236 fHiGainFirstDeriv[0] = 0.;237 234 238 235 Int_t summ = 0;
Note:
See TracChangeset
for help on using the changeset viewer.