lsst.gauss2d.fit g199a45376c+5e234f8357
 
Loading...
Searching...
No Matches
interpolation.h
1#ifndef LSST_GAUSS2D_FIT_INTERPOLATION_H
2#define LSST_GAUSS2D_FIT_INTERPOLATION_H
3
4namespace lsst::gauss2d::fit {
5
6enum class InterpType {
7 linear,
8 polynomial,
9 cspline,
10 akima,
11};
12
13} // namespace lsst::gauss2d::fit
14
15#endif // GAUSS2D_FIT_INTERPOLATION_H