#include "IntNonlinMgr.h"#include "CalibData/DacCol.h"#include <algorithm>Include dependency graph for IntNonlinMgr.cxx:

Go to the source code of this file.
Functions | |
| template<class Ty> Ty | extrap (Ty x1, Ty x2, Ty x3, Ty y1, Ty y2) |
| return y3 such that (y2 - y1)/(x2 - x1) = (y3 - y2)/(x3 - x2) | |
Definition in file IntNonlinMgr.cxx.
|
||||||||||||||||||||||||||||
|
return y3 such that (y2 - y1)/(x2 - x1) = (y3 - y2)/(x3 - x2)
Definition at line 58 of file IntNonlinMgr.cxx. Referenced by IntNonlinMgr::genLocalStore(), and AsymMgr::genLocalStore().
00058 {
00059 return (x3-x2)*(y2-y1)/(x2-x1) + y2;
00060 }
|
1.3.3