Changeset 5837 for trunk


Ignore:
Timestamp:
01/14/05 12:06:54 (20 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r5833 r5837  
    6262   * mhflux/MHAlpha.cc:
    6363     - removed check for fResult in PostProcess (it is always there)
     64
     65   * msignal/MExtractTimeFastSpline.cc:
     66     - fixed delete --> delete[]
    6467
    6568
  • trunk/MagicSoft/Mars/msignal/MExtractTimeFastSpline.cc

    r5296 r5837  
    8383 
    8484  if (fHiGainFirstDeriv)
    85     delete fHiGainFirstDeriv;
     85    delete [] fHiGainFirstDeriv;
    8686  if (fLoGainFirstDeriv)
    87     delete fLoGainFirstDeriv;
     87    delete [] fLoGainFirstDeriv;
    8888  if (fHiGainSecondDeriv)
    89     delete fHiGainSecondDeriv;
     89    delete [] fHiGainSecondDeriv;
    9090  if (fLoGainSecondDeriv)
    91     delete fLoGainSecondDeriv;
     91    delete [] fLoGainSecondDeriv;
    9292 
    9393}
  • trunk/MagicSoft/Mars/mtools/MSimulatedAnnealing.cc

    r3054 r5837  
    117117//////////////////////////////////////////////////////////////////////////////
    118118#include "MSimulatedAnnealing.h"
    119 #include "MHSimulatedAnnealing.h"
    120119
    121120#include <fstream>
     
    126125#include "MLog.h"
    127126#include "MLogManip.h"
     127
     128#include "MHSimulatedAnnealing.h"
    128129
    129130const Float_t MSimulatedAnnealing::gsYtryStr = 10000000; 
Note: See TracChangeset for help on using the changeset viewer.