lsst.jointcal
16.0-34-ga3c9d7e
|
this is the model used to fit independent CCDs, meaning that there is no instrument model. More...
#include <SimpleAstrometryModel.h>
Public Member Functions | |
SimpleAstrometryModel (CcdImageList const &ccdImageList, const std::shared_ptr< ProjectionHandler const > projectionHandler, bool initFromWCS, unsigned nNotFit=0, unsigned order=3) | |
Sky2TP is just a name, it can be anything. More... | |
SimpleAstrometryModel (SimpleAstrometryModel const &)=delete | |
No copy or move: there is only ever one instance of a given model (i.e.. per ccd+visit) More... | |
SimpleAstrometryModel (SimpleAstrometryModel &&)=delete | |
SimpleAstrometryModel & | operator= (SimpleAstrometryModel const &)=delete |
SimpleAstrometryModel & | operator= (SimpleAstrometryModel &&)=delete |
const AstrometryMapping * | getMapping (CcdImage const &) const override |
Mapping associated to a given CcdImage. More... | |
unsigned | assignIndices (std::string const &whatToFit, unsigned firstIndex) override |
Positions the various parameter sets into the parameter vector, starting at firstIndex. More... | |
void | offsetParams (Eigen::VectorXd const &delta) override |
Offset the parameters by the provided amounts (by -delta). More... | |
const std::shared_ptr< AstrometryTransform const > | getSkyToTangentPlane (CcdImage const &ccdImage) const override |
the mapping of sky coordinates (i.e. More... | |
void | freezeErrorTransform () override |
int | getTotalParameters () const override |
Return the total number of parameters in this model. More... | |
AstrometryTransform const & | getTransform (CcdImage const &ccdImage) const |
Access to mappings. More... | |
std::shared_ptr< afw::geom::SkyWcs > | makeSkyWcs (CcdImage const &ccdImage) const override |
Make a SkyWcs that contains this model. More... | |
~SimpleAstrometryModel () | |
int | getNpar (CcdImage const &ccdImage) const |
Return the number of parameters in the mapping of CcdImage. More... | |
bool | validate (CcdImageList const &ccdImageList) const |
Return true if this is a "reasonable" model. More... | |
this is the model used to fit independent CCDs, meaning that there is no instrument model.
Definition at line 52 of file SimpleAstrometryModel.h.
lsst::jointcal::SimpleAstrometryModel::SimpleAstrometryModel | ( | CcdImageList const & | ccdImageList, |
const std::shared_ptr< ProjectionHandler const > | projectionHandler, | ||
bool | initFromWCS, | ||
unsigned | nNotFit = 0 , |
||
unsigned | order = 3 |
||
) |
Sky2TP is just a name, it can be anything.
Definition at line 45 of file SimpleAstrometryModel.cc.
|
delete |
No copy or move: there is only ever one instance of a given model (i.e.. per ccd+visit)
|
delete |
|
inline |
Definition at line 95 of file SimpleAstrometryModel.h.
|
overridevirtual |
Positions the various parameter sets into the parameter vector, starting at firstIndex.
Implements lsst::jointcal::AstrometryModel.
Definition at line 104 of file SimpleAstrometryModel.cc.
|
overridevirtual |
Implements lsst::jointcal::AstrometryModel.
Definition at line 126 of file SimpleAstrometryModel.cc.
|
overridevirtual |
Mapping associated to a given CcdImage.
Implements lsst::jointcal::AstrometryModel.
Definition at line 100 of file SimpleAstrometryModel.cc.
|
inlineinherited |
Return the number of parameters in the mapping of CcdImage.
Definition at line 48 of file AstrometryModel.h.
|
inlineoverridevirtual |
the mapping of sky coordinates (i.e.
the coordinate system in which fitted stars are reported) onto the Tangent plane (into which the pixel coordinates are transformed)
Implements lsst::jointcal::AstrometryModel.
Definition at line 78 of file SimpleAstrometryModel.h.
|
overridevirtual |
Return the total number of parameters in this model.
Implements lsst::jointcal::AstrometryModel.
Definition at line 130 of file SimpleAstrometryModel.cc.
const AstrometryTransform & lsst::jointcal::SimpleAstrometryModel::getTransform | ( | CcdImage const & | ccdImage | ) | const |
Access to mappings.
Definition at line 138 of file SimpleAstrometryModel.cc.
|
overridevirtual |
Make a SkyWcs that contains this model.
ccdImage | The exposure to create the SkyWcs for. |
Implements lsst::jointcal::AstrometryModel.
Definition at line 142 of file SimpleAstrometryModel.cc.
|
overridevirtual |
Offset the parameters by the provided amounts (by -delta).
The shifts are applied according to the indices given in assignIndices.
[in] | delta | vector of offsets to apply |
Implements lsst::jointcal::AstrometryModel.
Definition at line 119 of file SimpleAstrometryModel.cc.
|
delete |
|
delete |
|
inlineinherited |
Return true if this is a "reasonable" model.
Not yet implemented: DM-16324 An example might be that the model produces finite RA/Dec on each sensor's bounding box.
ccdImageList | The ccdImages to test the model validity on. |
Definition at line 98 of file AstrometryModel.h.