Changeset 8548 for trunk/MagicSoft


Ignore:
Timestamp:
06/11/07 21:30:35 (17 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r8545 r8548  
    4242       derivative (EvalDerivEq0)
    4343     - removed a lot of old an obsolete comments
     44     - fixed the newly introduced EvlInteg(int, int) -- must
     45       return 0 explicitly if a==b
    4446
    4547
  • trunk/MagicSoft/Mars/mextralgo/MExtralgoSpline.h

    r8546 r8548  
    165165        return sum;
    166166        */
     167
     168        if (a==b)
     169            return 0;
     170
    167171        Double_t sum=0;
    168172        for (const Float_t *ptr=fDer2+a+1; ptr<fDer2+b; ptr++)
Note: See TracChangeset for help on using the changeset viewer.