lsst.jointcal
15.0-17-g076ea75+13
|
Interface class between AstrometryFit and an actual model for the Mapping (s) from pixels to some tangent plane (aka distortions). More...
#include <AstrometryModel.h>
Public Member Functions | |
int | getNpar (CcdImage const &ccdImage) const |
Return the number of parameters in the mapping of CcdImage. More... | |
virtual const AstrometryMapping * | getMapping (CcdImage const &) const =0 |
Mapping associated to a given CcdImage. More... | |
virtual unsigned | assignIndices (std::string const &whatToFit, unsigned firstIndex)=0 |
Assign indices to parameters involved in mappings, starting at firstIndex. More... | |
virtual void | offsetParams (Eigen::VectorXd const &delta)=0 |
Offset the parameters by the provided amounts. More... | |
virtual const std::shared_ptr< Gtransfo const > | getSky2TP (CcdImage const &ccdImage) const =0 |
The transformation used to project the positions of FittedStars. More... | |
virtual std::shared_ptr< afw::geom::SkyWcs > | makeSkyWcs (CcdImage const &ccdImage) const =0 |
Make a SkyWcs that contains this model. More... | |
virtual void | freezeErrorTransform ()=0 |
virtual int | getTotalParameters () const =0 |
Return the total number of parameters in this model. More... | |
virtual | ~AstrometryModel () |
Protected Member Functions | |
virtual AstrometryMapping * | findMapping (CcdImage const &ccdImage) const =0 |
Return a pointer to the mapping associated with this ccdImage. More... | |
Interface class between AstrometryFit and an actual model for the Mapping (s) from pixels to some tangent plane (aka distortions).
Definition at line 21 of file AstrometryModel.h.
|
inlinevirtual |
Definition at line 58 of file AstrometryModel.h.
|
pure virtual |
Assign indices to parameters involved in mappings, starting at firstIndex.
Returns the highest assigned index.
Implemented in lsst::jointcal::ConstrainedAstrometryModel, and lsst::jointcal::SimpleAstrometryModel.
|
protectedpure virtual |
Return a pointer to the mapping associated with this ccdImage.
|
pure virtual |
Implemented in lsst::jointcal::ConstrainedAstrometryModel, and lsst::jointcal::SimpleAstrometryModel.
|
pure virtual |
Mapping associated to a given CcdImage.
Implemented in lsst::jointcal::ConstrainedAstrometryModel, and lsst::jointcal::SimpleAstrometryModel.
|
inline |
Return the number of parameters in the mapping of CcdImage.
Definition at line 24 of file AstrometryModel.h.
|
pure virtual |
The transformation used to project the positions of FittedStars.
This defines the coordinate system into which the Mapping of this Ccdimage maps the pixel coordinates.
Implemented in lsst::jointcal::ConstrainedAstrometryModel, and lsst::jointcal::SimpleAstrometryModel.
|
pure virtual |
Return the total number of parameters in this model.
Implemented in lsst::jointcal::ConstrainedAstrometryModel, and lsst::jointcal::SimpleAstrometryModel.
|
pure virtual |
Make a SkyWcs that contains this model.
ccdImage | The exposure to create the SkyWcs for. |
Implemented in lsst::jointcal::ConstrainedAstrometryModel, and lsst::jointcal::SimpleAstrometryModel.
|
pure virtual |
Offset the parameters by the provided amounts.
The shifts are applied according to the indices given in AssignIndices.
Implemented in lsst::jointcal::ConstrainedAstrometryModel, and lsst::jointcal::SimpleAstrometryModel.