Changeset 17148 for trunk/Mars/mextralgo


Ignore:
Timestamp:
09/09/13 12:39:18 (11 years ago)
Author:
ftemme
Message:
Merging changes from the MC branch in the trunk
Location:
trunk/Mars
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Mars

  • trunk/Mars/mextralgo/MExtralgoSpline.cc

    r14854 r17148  
    207207// at x, until x==0. If y is not found or out of range -2 is returned.
    208208//
    209 Double_t MExtralgoSpline::SearchYdn(Float_t x, Float_t y) const
     209Double_t MExtralgoSpline::SearchYdn(Double_t x, Double_t y) const
    210210{
    211211    if (x>=fNum-1)
     
    228228// at x, until x==fNum-1. If y is not found or out of range -2 is returned.
    229229//
    230 Double_t MExtralgoSpline::SearchYup(Float_t x, Float_t y) const
     230Double_t MExtralgoSpline::SearchYup(Double_t x, Double_t y) const
    231231{
    232232    if (x<0)
  • trunk/Mars/mextralgo/MExtralgoSpline.h

    r14854 r17148  
    347347    Float_t Deriv1(const Float_t x) const;
    348348
    349     Double_t SearchYdn(Float_t maxpos, Float_t y) const;
    350     Double_t SearchYup(Float_t maxpos, Float_t y) const;
     349    Double_t SearchYdn(Double_t maxpos, Double_t y) const;
     350    Double_t SearchYup(Double_t maxpos, Double_t y) const;
    351351
    352352    Double_t SearchYdn(Float_t y) const { return SearchYdn(fNum, y); }
Note: See TracChangeset for help on using the changeset viewer.