Changeset 3233
- Timestamp:
- 02/18/04 18:40:59 (21 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r3232 r3233 6 6 7 7 2004/01/18: Abelardo Moralejo 8 9 * mtools/MCubicSpline.cc 10 - in Init, corrected initialization of arrays temp and ysd, which 11 was done with n-1 elements instead of n. 8 12 9 13 * mgui/MHexagon.cc -
trunk/MagicSoft/Mars/mtools/MCubicSpline.cc
r3210 r3233 72 72 73 73 { 74 Double_t *temp = new Double_t[n -1];75 Double_t *ysd = new Double_t[n -1];74 Double_t *temp = new Double_t[n]; 75 Double_t *ysd = new Double_t[n]; 76 76 77 77 fCoeff = new TObjArray(n-1,0);
Note:
See TracChangeset
for help on using the changeset viewer.