lsst.afw
20.0.0-4-gde602ef96
|
Control how to make an approximation. More...
#include <Approximate.h>
Public Types | |
enum | Style { UNKNOWN = -1, CHEBYSHEV, NUM_STYLES } |
Choose the type of approximation to use. More... | |
Public Member Functions | |
ApproximateControl (Style style, int orderX, int orderY=-1, bool weighting=true) | |
ctor More... | |
Style | getStyle () const |
Return the Style. More... | |
void | setStyle (Style const style) |
Set the Style. More... | |
int | getOrderX () const |
Return the order of approximation to use in the x-direction. More... | |
void | setOrderX (int const orderX) |
Set the order of approximation to use in the x-direction. More... | |
int | getOrderY () const |
Return the order of approximation to use in the y-direction. More... | |
void | setOrderY (int const orderY) |
Set the order of approximation to use in the y-direction. More... | |
bool | getWeighting () const |
Return whether inverse variance weighting will be used in calculation. More... | |
void | setWeighting (bool const weighting) |
Set whether inverse variance weighting will be used in calculation. More... | |
Control how to make an approximation.
Definition at line 48 of file Approximate.h.
Choose the type of approximation to use.
Enumerator | |
---|---|
UNKNOWN | |
CHEBYSHEV | Use a 2-D Chebyshev polynomial. |
NUM_STYLES |
Definition at line 51 of file Approximate.h.
lsst::afw::math::ApproximateControl::ApproximateControl | ( | Style | style, |
int | orderX, | ||
int | orderY = -1 , |
||
bool | weighting = true |
||
) |
ctor
style | Type of approximation |
orderX | Order of approximation to use in x-direction |
orderY | Order of approximation to use in y-direction |
weighting | Use inverse variance weighting? |
Definition at line 46 of file Approximate.cc.
|
inline |
Return the order of approximation to use in the x-direction.
Definition at line 70 of file Approximate.h.
|
inline |
Return the order of approximation to use in the y-direction.
Definition at line 74 of file Approximate.h.
|
inline |
Return the Style.
Definition at line 66 of file Approximate.h.
|
inline |
Return whether inverse variance weighting will be used in calculation.
Definition at line 78 of file Approximate.h.
|
inline |
Set the order of approximation to use in the x-direction.
Definition at line 72 of file Approximate.h.
|
inline |
Set the order of approximation to use in the y-direction.
Definition at line 76 of file Approximate.h.
|
inline |
Set the Style.
Definition at line 68 of file Approximate.h.
|
inline |
Set whether inverse variance weighting will be used in calculation.
Definition at line 80 of file Approximate.h.