Ignore:
Timestamp:
08/27/13 13:22:10 (11 years ago)
Author:
ftemme
Message:
changed the parameter type of MExtralgoSpline::SearchYup and MextralgoSpline::SearchYdn from Float_t to Double_t, because a Float_t could cause an endless loop in ManalogSignal::Discriminate(line 232 ff)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/Mars_MC/mextralgo/MExtralgoSpline.cc

    r14854 r17040  
    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)
Note: See TracChangeset for help on using the changeset viewer.