Changeset 5837 for trunk/MagicSoft
- Timestamp:
- 01/14/05 12:06:54 (20 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r5833 r5837 62 62 * mhflux/MHAlpha.cc: 63 63 - removed check for fResult in PostProcess (it is always there) 64 65 * msignal/MExtractTimeFastSpline.cc: 66 - fixed delete --> delete[] 64 67 65 68 -
trunk/MagicSoft/Mars/msignal/MExtractTimeFastSpline.cc
r5296 r5837 83 83 84 84 if (fHiGainFirstDeriv) 85 delete fHiGainFirstDeriv;85 delete [] fHiGainFirstDeriv; 86 86 if (fLoGainFirstDeriv) 87 delete fLoGainFirstDeriv;87 delete [] fLoGainFirstDeriv; 88 88 if (fHiGainSecondDeriv) 89 delete fHiGainSecondDeriv;89 delete [] fHiGainSecondDeriv; 90 90 if (fLoGainSecondDeriv) 91 delete fLoGainSecondDeriv;91 delete [] fLoGainSecondDeriv; 92 92 93 93 } -
trunk/MagicSoft/Mars/mtools/MSimulatedAnnealing.cc
r3054 r5837 117 117 ////////////////////////////////////////////////////////////////////////////// 118 118 #include "MSimulatedAnnealing.h" 119 #include "MHSimulatedAnnealing.h"120 119 121 120 #include <fstream> … … 126 125 #include "MLog.h" 127 126 #include "MLogManip.h" 127 128 #include "MHSimulatedAnnealing.h" 128 129 129 130 const Float_t MSimulatedAnnealing::gsYtryStr = 10000000;
Note:
See TracChangeset
for help on using the changeset viewer.