Changeset 17148 for trunk/Mars/mextralgo
- Timestamp:
- 09/09/13 12:39:18 (11 years ago)
- Location:
- trunk/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Mars
-
Property svn:mergeinfo
set to
/branches/Mars_MC merged eligible
-
Property svn:mergeinfo
set to
-
trunk/Mars/mextralgo/MExtralgoSpline.cc
r14854 r17148 207 207 // at x, until x==0. If y is not found or out of range -2 is returned. 208 208 // 209 Double_t MExtralgoSpline::SearchYdn( Float_t x, Float_t y) const209 Double_t MExtralgoSpline::SearchYdn(Double_t x, Double_t y) const 210 210 { 211 211 if (x>=fNum-1) … … 228 228 // at x, until x==fNum-1. If y is not found or out of range -2 is returned. 229 229 // 230 Double_t MExtralgoSpline::SearchYup( Float_t x, Float_t y) const230 Double_t MExtralgoSpline::SearchYup(Double_t x, Double_t y) const 231 231 { 232 232 if (x<0) -
trunk/Mars/mextralgo/MExtralgoSpline.h
r14854 r17148 347 347 Float_t Deriv1(const Float_t x) const; 348 348 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; 351 351 352 352 Double_t SearchYdn(Float_t y) const { return SearchYdn(fNum, y); }
Note:
See TracChangeset
for help on using the changeset viewer.