|
LSST Applications g013ef56533+2edba5e46d,g083dd6704c+a047e97985,g199a45376c+0ba108daf9,g1fd858c14a+d594c53611,g210f2d0738+d003cec0be,g25ecf2a47a+204e5a9ad5,g262e1987ae+16552835ac,g29ae962dfc+867dbde878,g2cef7863aa+aef1011c0b,g30d7c61c20+990af31dd2,g35bb328faa+8c5ae1fdc5,g3fd5ace14f+c8e8c50746,g47891489e3+f459a6810c,g53246c7159+8c5ae1fdc5,g54cd7ddccb+890c8e1e5d,g5b326b94bb+01d4acd216,g64539dfbff+d003cec0be,g67b6fd64d1+f459a6810c,g6ebf1fc0d4+8c5ae1fdc5,g74acd417e5+4b21cac47b,g786e29fd12+668abc6043,g87389fa792+8856018cbb,g89139ef638+f459a6810c,g8d7436a09f+b19788b7f5,g8ea07a8fe4+81eaaadc04,g90f42f885a+34c0557caf,g97be763408+3bd86eedd0,g98a1a72a9c+67cf96cfb3,g98df359435+688a06938e,gbf99507273+8c5ae1fdc5,gc2a301910b+d003cec0be,gca7fc764a6+f459a6810c,gd7ef33dd92+f459a6810c,gdab6d2f7ff+4b21cac47b,ge410e46f29+f459a6810c,ge41e95a9f2+d003cec0be,geaed405ab2+e3b4b2a692,gf9a733ac38+8c5ae1fdc5,w.2025.43
LSST Data Management Base Package
|
Evaluates a standard shapelet Basis. More...
#include <BasisEvaluator.h>
Public Member Functions | |
| BasisEvaluator (int order, BasisTypeEnum basisType) | |
| Construct an evaluator for a shapelet basis with the given order and type. | |
| int | getOrder () const |
| Return the order of the shapelet expansion. | |
| BasisTypeEnum | getBasisType () const |
| Return the type of the shapelet expansion. | |
| void | fillEvaluation (Array1d const &array, double x, double y, Array1d const &dx=Array1d(), Array1d const &dy=Array1d()) const |
| Fill an array with an evaluation vector that can be used to evaluate a shapelet model at a point. | |
| void | fillEvaluation (Array1d const &array, geom::Point2D const &point, Array1d const &dx=Array1d(), Array1d const &dy=Array1d()) const |
| Fill an array with an evaluation vector that can be used to evaluate a shapelet model at a point. | |
| void | fillEvaluation (Array1d const &array, geom::Extent2D const &point, Array1d const &dx=Array1d(), Array1d const &dy=Array1d()) const |
| Fill an array with an evaluation vector that can be used to evaluate a shapelet model at a point. | |
| void | fillIntegration (Array1d const &array, int xMoment=0, int yMoment=0) const |
| Fill an array with an integration vector that can be used to integrate a shapelet model. | |
Evaluates a standard shapelet Basis.
Definition at line 42 of file BasisEvaluator.h.
|
inline |
Construct an evaluator for a shapelet basis with the given order and type.
Definition at line 46 of file BasisEvaluator.h.
| void lsst::shapelet::BasisEvaluator::fillEvaluation | ( | Array1d const & | array, |
| double | x, | ||
| double | y, | ||
| Array1d const & | dx = Array1d(), | ||
| Array1d const & | dy = Array1d() ) const |
Fill an array with an evaluation vector that can be used to evaluate a shapelet model at a point.
| [out] | array | Output array. Must be preallocated to the correct size. |
| [in] | x | x coordinate at which to evaluate the basis. |
| [in] | y | y coordinate at which to evaluate the basis. |
| [out] | dx | Optional output array for the derivative w.r.t. the x coordinate. |
| [out] | dy | Optional output array for the derivative w.r.t. the y coordinate. |
|
inline |
Fill an array with an evaluation vector that can be used to evaluate a shapelet model at a point.
| [out] | array | Output array. Must be preallocated to the correct size. |
| [in] | point | Coordinates at which to evaluate the basis. |
| [out] | dx | Optional output array for the derivative w.r.t. the x coordinate. |
| [out] | dy | Optional output array for the derivative w.r.t. the y coordinate. |
Definition at line 96 of file BasisEvaluator.h.
|
inline |
Fill an array with an evaluation vector that can be used to evaluate a shapelet model at a point.
| [out] | array | Output array. Must be preallocated to the correct size. |
| [in] | point | Coordinates at which to evaluate the basis. |
| [out] | dx | Optional output array for the derivative w.r.t. the x coordinate. |
| [out] | dy | Optional output array for the derivative w.r.t. the y coordinate. |
Definition at line 79 of file BasisEvaluator.h.
| void lsst::shapelet::BasisEvaluator::fillIntegration | ( | Array1d const & | array, |
| int | xMoment = 0, | ||
| int | yMoment = 0 ) const |
Fill an array with an integration vector that can be used to integrate a shapelet model.
| [out] | array | Output array. Must be preallocated to the correct size. |
| [in] | xMoment | Integrate the expansion multiplied by this power of x. |
| [in] | yMoment | Integrate the expansion multiplied by this power of y. |
|
inline |
Return the type of the shapelet expansion.
Definition at line 52 of file BasisEvaluator.h.
|
inline |
Return the order of the shapelet expansion.
Definition at line 49 of file BasisEvaluator.h.