lsst.jointcal  17.0-2-ga3c9d7e
Public Member Functions | Protected Member Functions | Friends | List of all members
lsst::jointcal::AstrometryTransformLinear Class Reference

implements the linear transformations (6 real coefficients). More...

#include <AstrometryTransform.h>

Inheritance diagram for lsst::jointcal::AstrometryTransformLinear:
lsst::jointcal::AstrometryTransformPolynomial lsst::jointcal::AstrometryTransform lsst::jointcal::AstrometryTransformLinearRot lsst::jointcal::AstrometryTransformLinearScale lsst::jointcal::AstrometryTransformLinearShift

Public Member Functions

 AstrometryTransformLinear ()
 the default constructor constructs the do-nothing transformation. More...
 
 AstrometryTransformLinear (AstrometryTransformPolynomial const &transform)
 This triggers an exception if P.getOrder() != 1. More...
 
AstrometryTransformLinear operator* (AstrometryTransformLinear const &right) const
 enables to combine linear tranformations: T1=T2*T3 is legal. More...
 
AstrometryTransformLinear inverted () const
 returns the inverse: T1 = T2.inverted(); More...
 
void computeDerivative (Point const &where, AstrometryTransformLinear &derivative, const double step=0.01) const
 specialised analytic routine More...
 
AstrometryTransformLinear linearApproximation (Point const &where, const double step=0.01) const
 linear (local) approximation. More...
 
 AstrometryTransformLinear (const double ox, const double oy, const double aa11, const double aa12, const double aa21, const double aa22)
 Construct a AstrometryTransformLinear from parameters. More...
 
 AstrometryTransformLinear (AstrometryTransformIdentity const &)
 Handy converter: More...
 
std::unique_ptr< AstrometryTransformclone () const
 returns a copy (allocated by new) of the transformation. More...
 
std::unique_ptr< AstrometryTransforminverseTransform (const double precision, const Frame &region) const
 returns an inverse transform. Numerical if not overloaded. More...
 
double A11 () const
 
double A12 () const
 
double A21 () const
 
double A22 () const
 
double Dx () const
 
double Dy () const
 
unsigned getOrder () const
 Returns the polynomial order. More...
 
void apply (const double xIn, const double yIn, double &xOut, double &yOut) const override
 
void apply (Point const &in, Point &out) const
 applies the tranfo to in and writes into out. Is indeed virtual. More...
 
Point apply (Point const &in) const
 All these apply(..) shadow the virtual one in derived classes, unless one writes "using AstrometryTransform::apply". More...
 
Frame apply (Frame const &inputframe, bool inscribed) const
 Transform a bounding box, taking either the inscribed or circumscribed box. More...
 
virtual void transformPosAndErrors (const FatPoint &in, FatPoint &out) const override
 a mix of apply and Derivative More...
 
int getNpar () const override
 total number of parameters More...
 
void dump (std::ostream &stream=std::cout) const override
 print out of coefficients in a readable form. More...
 
double fit (StarMatchList const &starMatchList) override
 guess what More...
 
AstrometryTransformPolynomial operator* (AstrometryTransformPolynomial const &right) const
 Composition (internal stuff in quadruple precision) More...
 
AstrometryTransformPolynomial operator+ (AstrometryTransformPolynomial const &right) const
 Addition. More...
 
AstrometryTransformPolynomial operator- (AstrometryTransformPolynomial const &right) const
 Subtraction. More...
 
std::unique_ptr< AstrometryTransformcomposeAndReduce (AstrometryTransformPolynomial const &right) const
 Return a reduced composition of newTransform = this(right()), or nullptr if it cannot be reduced. More...
 
virtual std::unique_ptr< AstrometryTransformcomposeAndReduce (AstrometryTransform const &right) const
 Return a reduced composition of newTransform = this(right()), or nullptr if it cannot be reduced. More...
 
double coeff (const unsigned powX, const unsigned powY, const unsigned whichCoord) const
 access to coefficients (read only) More...
 
double & coeff (const unsigned powX, const unsigned powY, const unsigned whichCoord)
 write access More...
 
double coeffOrZero (const unsigned powX, const unsigned powY, const unsigned whichCoord) const
 read access, zero if beyond order More...
 
double determinant () const
 
double paramRef (const int i) const override
 
double & paramRef (const int i) override
 
void paramDerivatives (Point const &where, double *dx, double *dy) const override
 Derivative w.r.t parameters. More...
 
std::shared_ptr< ast::MappingtoAstMap (jointcal::Frame const &domain) const override
 Create an equivalent AST mapping for this transformation, including an analytic inverse if possible. More...
 
void write (std::ostream &s) const override
 
void write (const std::string &fileName) const
 
void read (std::istream &s)
 
std::string __str__ ()
 
void transformStar (FatPoint &in) const
 
virtual double getJacobian (Point const &point) const
 returns the local jacobian. More...
 
virtual double getJacobian (const double x, const double y) const
 returns the local jacobian. More...
 
virtual void transformErrors (Point const &where, const double *vIn, double *vOut) const
 transform errors (represented as double[3] in order V(xx),V(yy),Cov(xy)) More...
 
void getParams (double *params) const
 params should be at least Npar() long More...
 
void offsetParams (Eigen::VectorXd const &delta)
 
virtual std::unique_ptr< AstrometryTransformroughInverse (const Frame &region) const
 Rough inverse. More...
 

Protected Member Functions

double & a11 ()
 
double & a12 ()
 
double & a21 ()
 
double & a22 ()
 
double & dx ()
 
double & dy ()
 

Friends

class AstrometryTransform
 
class AstrometryTransformIdentity
 
class AstrometryTransformPolynomial
 

Detailed Description

implements the linear transformations (6 real coefficients).

Definition at line 426 of file AstrometryTransform.h.

Constructor & Destructor Documentation

◆ AstrometryTransformLinear() [1/4]

lsst::jointcal::AstrometryTransformLinear::AstrometryTransformLinear ( )
inline

the default constructor constructs the do-nothing transformation.

Definition at line 431 of file AstrometryTransform.h.

◆ AstrometryTransformLinear() [2/4]

lsst::jointcal::AstrometryTransformLinear::AstrometryTransformLinear ( AstrometryTransformPolynomial const &  transform)
explicit

This triggers an exception if P.getOrder() != 1.

Definition at line 1211 of file AstrometryTransform.cc.

◆ AstrometryTransformLinear() [3/4]

lsst::jointcal::AstrometryTransformLinear::AstrometryTransformLinear ( const double  ox,
const double  oy,
const double  aa11,
const double  aa12,
const double  aa21,
const double  aa22 
)

Construct a AstrometryTransformLinear from parameters.

Definition at line 1200 of file AstrometryTransform.cc.

◆ AstrometryTransformLinear() [4/4]

lsst::jointcal::AstrometryTransformLinear::AstrometryTransformLinear ( AstrometryTransformIdentity const &  )
inline

Handy converter:

Definition at line 459 of file AstrometryTransform.h.

Member Function Documentation

◆ __str__()

std::string lsst::jointcal::AstrometryTransform::__str__ ( )
inlineinherited

Definition at line 94 of file AstrometryTransform.h.

◆ A11()

double lsst::jointcal::AstrometryTransformLinear::A11 ( ) const
inline

Definition at line 467 of file AstrometryTransform.h.

◆ a11()

double& lsst::jointcal::AstrometryTransformLinear::a11 ( )
inlineprotected

Definition at line 475 of file AstrometryTransform.h.

◆ A12()

double lsst::jointcal::AstrometryTransformLinear::A12 ( ) const
inline

Definition at line 468 of file AstrometryTransform.h.

◆ a12()

double& lsst::jointcal::AstrometryTransformLinear::a12 ( )
inlineprotected

Definition at line 476 of file AstrometryTransform.h.

◆ A21()

double lsst::jointcal::AstrometryTransformLinear::A21 ( ) const
inline

Definition at line 469 of file AstrometryTransform.h.

◆ a21()

double& lsst::jointcal::AstrometryTransformLinear::a21 ( )
inlineprotected

Definition at line 477 of file AstrometryTransform.h.

◆ A22()

double lsst::jointcal::AstrometryTransformLinear::A22 ( ) const
inline

Definition at line 470 of file AstrometryTransform.h.

◆ a22()

double& lsst::jointcal::AstrometryTransformLinear::a22 ( )
inlineprotected

Definition at line 478 of file AstrometryTransform.h.

◆ apply() [1/4]

void lsst::jointcal::AstrometryTransform::apply ( Point const &  in,
Point out 
) const
inlineinherited

applies the tranfo to in and writes into out. Is indeed virtual.

Definition at line 71 of file AstrometryTransform.h.

◆ apply() [2/4]

Point lsst::jointcal::AstrometryTransform::apply ( Point const &  in) const
inlineinherited

All these apply(..) shadow the virtual one in derived classes, unless one writes "using AstrometryTransform::apply".

Definition at line 75 of file AstrometryTransform.h.

◆ apply() [3/4]

Frame lsst::jointcal::AstrometryTransform::apply ( Frame const &  inputframe,
bool  inscribed 
) const
inherited

Transform a bounding box, taking either the inscribed or circumscribed box.

Parameters
[in]inputframeThe frame to be transformed.
[in]inscribedReturn the inscribed (true) or circumscribed (false) box.
Returns
The transformed frame.

Definition at line 75 of file AstrometryTransform.cc.

◆ apply() [4/4]

void lsst::jointcal::AstrometryTransformPolynomial::apply ( const double  xIn,
const double  yIn,
double &  xOut,
double &  yOut 
) const
overridevirtualinherited

Implements lsst::jointcal::AstrometryTransform.

Definition at line 570 of file AstrometryTransform.cc.

◆ clone()

std::unique_ptr<AstrometryTransform> lsst::jointcal::AstrometryTransformLinear::clone ( ) const
inlinevirtual

returns a copy (allocated by new) of the transformation.

Reimplemented from lsst::jointcal::AstrometryTransformPolynomial.

Definition at line 461 of file AstrometryTransform.h.

◆ coeff() [1/2]

double lsst::jointcal::AstrometryTransformPolynomial::coeff ( const unsigned  powX,
const unsigned  powY,
const unsigned  whichCoord 
) const
inherited

access to coefficients (read only)

Definition at line 738 of file AstrometryTransform.cc.

◆ coeff() [2/2]

double & lsst::jointcal::AstrometryTransformPolynomial::coeff ( const unsigned  powX,
const unsigned  powY,
const unsigned  whichCoord 
)
inherited

write access

Definition at line 747 of file AstrometryTransform.cc.

◆ coeffOrZero()

double lsst::jointcal::AstrometryTransformPolynomial::coeffOrZero ( const unsigned  powX,
const unsigned  powY,
const unsigned  whichCoord 
) const
inherited

read access, zero if beyond order

Definition at line 753 of file AstrometryTransform.cc.

◆ composeAndReduce() [1/2]

std::unique_ptr< AstrometryTransform > lsst::jointcal::AstrometryTransform::composeAndReduce ( AstrometryTransform const &  right) const
virtualinherited

Return a reduced composition of newTransform = this(right()), or nullptr if it cannot be reduced.

"Reduced" in this context means that they are capable of being merged into a single transform, for example, for two polynomials:

\[ f(x) = 1 + x^2, g(x) = -1 + 3x \]

we would have h = f.composeAndReduce(g) == 2 - 6x + 9x^2.

To be overloaded by derived classes if they can properly reduce the composition.

Parameters
rightThe transform to apply first.
Returns
The new reduced and composed AstrometryTransform, or nullptr if no such reduction is possible.

Reimplemented in lsst::jointcal::AstrometryTransformIdentity.

Definition at line 93 of file AstrometryTransform.cc.

◆ composeAndReduce() [2/2]

std::unique_ptr< AstrometryTransform > lsst::jointcal::AstrometryTransformPolynomial::composeAndReduce ( AstrometryTransformPolynomial const &  right) const
inherited

Return a reduced composition of newTransform = this(right()), or nullptr if it cannot be reduced.

"Reduced" in this context means that they are capable of being merged into a single transform, for example, for two polynomials:

\[ f(x) = 1 + x^2, g(x) = -1 + 3x \]

we would have h = f.composeAndReduce(g) == 2 - 6x + 9x^2.

To be overloaded by derived classes if they can properly reduce the composition.

Parameters
rightThe transform to apply first.
Returns
The new reduced and composed AstrometryTransform, or nullptr if no such reduction is possible.

Definition at line 930 of file AstrometryTransform.cc.

◆ computeDerivative()

void lsst::jointcal::AstrometryTransformLinear::computeDerivative ( Point const &  where,
AstrometryTransformLinear derivative,
const double  step = 0.01 
) const
virtual

specialised analytic routine

Reimplemented from lsst::jointcal::AstrometryTransformPolynomial.

Definition at line 1234 of file AstrometryTransform.cc.

◆ determinant()

double lsst::jointcal::AstrometryTransformPolynomial::determinant ( ) const
inherited

Definition at line 812 of file AstrometryTransform.cc.

◆ dump()

void lsst::jointcal::AstrometryTransformPolynomial::dump ( std::ostream stream = std::cout) const
overridevirtualinherited

print out of coefficients in a readable form.

Implements lsst::jointcal::AstrometryTransform.

Definition at line 793 of file AstrometryTransform.cc.

◆ Dx()

double lsst::jointcal::AstrometryTransformLinear::Dx ( ) const
inline

Definition at line 471 of file AstrometryTransform.h.

◆ dx()

double& lsst::jointcal::AstrometryTransformLinear::dx ( )
inlineprotected

Definition at line 479 of file AstrometryTransform.h.

◆ Dy()

double lsst::jointcal::AstrometryTransformLinear::Dy ( ) const
inline

Definition at line 472 of file AstrometryTransform.h.

◆ dy()

double& lsst::jointcal::AstrometryTransformLinear::dy ( )
inlineprotected

Definition at line 480 of file AstrometryTransform.h.

◆ fit()

double lsst::jointcal::AstrometryTransformPolynomial::fit ( StarMatchList const &  starMatchList)
overridevirtualinherited

◆ getJacobian() [1/2]

virtual double lsst::jointcal::AstrometryTransform::getJacobian ( Point const &  point) const
inlinevirtualinherited

returns the local jacobian.

Definition at line 110 of file AstrometryTransform.h.

◆ getJacobian() [2/2]

double lsst::jointcal::AstrometryTransform::getJacobian ( const double  x,
const double  y 
) const
virtualinherited

returns the local jacobian.

Definition at line 98 of file AstrometryTransform.cc.

◆ getNpar()

int lsst::jointcal::AstrometryTransformPolynomial::getNpar ( ) const
inlineoverridevirtualinherited

◆ getOrder()

unsigned lsst::jointcal::AstrometryTransformPolynomial::getOrder ( ) const
inlineinherited

Returns the polynomial order.

Definition at line 309 of file AstrometryTransform.h.

◆ getParams()

void lsst::jointcal::AstrometryTransform::getParams ( double *  params) const
inherited

params should be at least Npar() long

Definition at line 215 of file AstrometryTransform.cc.

◆ inverseTransform()

std::unique_ptr< AstrometryTransform > lsst::jointcal::AstrometryTransformLinear::inverseTransform ( const double  precision,
const Frame region 
) const
virtual

returns an inverse transform. Numerical if not overloaded.

precision and region refer to the "input" side of this, and hence to the output side of the returned AstrometryTransform.

Reimplemented from lsst::jointcal::AstrometryTransform.

Definition at line 1272 of file AstrometryTransform.cc.

◆ inverted()

AstrometryTransformLinear lsst::jointcal::AstrometryTransformLinear::inverted ( ) const

returns the inverse: T1 = T2.inverted();

Definition at line 1245 of file AstrometryTransform.cc.

◆ linearApproximation()

AstrometryTransformLinear lsst::jointcal::AstrometryTransformLinear::linearApproximation ( Point const &  where,
const double  step = 0.01 
) const
virtual

linear (local) approximation.

Reimplemented from lsst::jointcal::AstrometryTransform.

Definition at line 1241 of file AstrometryTransform.cc.

◆ offsetParams()

void lsst::jointcal::AstrometryTransform::offsetParams ( Eigen::VectorXd const &  delta)
inherited

Definition at line 220 of file AstrometryTransform.cc.

◆ operator*() [1/2]

AstrometryTransformPolynomial lsst::jointcal::AstrometryTransformPolynomial::operator* ( AstrometryTransformPolynomial const &  right) const
inherited

Composition (internal stuff in quadruple precision)

Definition at line 1035 of file AstrometryTransform.cc.

◆ operator*() [2/2]

AstrometryTransformLinear lsst::jointcal::AstrometryTransformLinear::operator* ( AstrometryTransformLinear const &  right) const

enables to combine linear tranformations: T1=T2*T3 is legal.

Definition at line 1219 of file AstrometryTransform.cc.

◆ operator+()

AstrometryTransformPolynomial lsst::jointcal::AstrometryTransformPolynomial::operator+ ( AstrometryTransformPolynomial const &  right) const
inherited

Addition.

Definition at line 1057 of file AstrometryTransform.cc.

◆ operator-()

AstrometryTransformPolynomial lsst::jointcal::AstrometryTransformPolynomial::operator- ( AstrometryTransformPolynomial const &  right) const
inherited

Subtraction.

Definition at line 1071 of file AstrometryTransform.cc.

◆ paramDerivatives()

void lsst::jointcal::AstrometryTransformPolynomial::paramDerivatives ( Point const &  where,
double *  dx,
double *  dy 
) const
overridevirtualinherited

Derivative w.r.t parameters.

Derivatives should be al least 2*NPar long. first Npar, for x, last Npar for y.

Reimplemented from lsst::jointcal::AstrometryTransform.

Definition at line 773 of file AstrometryTransform.cc.

◆ paramRef() [1/2]

double lsst::jointcal::AstrometryTransformPolynomial::paramRef ( const int  i) const
overridevirtualinherited

Reimplemented from lsst::jointcal::AstrometryTransform.

Definition at line 763 of file AstrometryTransform.cc.

◆ paramRef() [2/2]

double & lsst::jointcal::AstrometryTransformPolynomial::paramRef ( const int  i)
overridevirtualinherited

Reimplemented from lsst::jointcal::AstrometryTransform.

Definition at line 768 of file AstrometryTransform.cc.

◆ read()

void lsst::jointcal::AstrometryTransformPolynomial::read ( std::istream s)
inherited

Definition at line 1097 of file AstrometryTransform.cc.

◆ roughInverse()

std::unique_ptr< AstrometryTransform > lsst::jointcal::AstrometryTransform::roughInverse ( const Frame region) const
virtualinherited

Rough inverse.

Stored by the numerical inverter to guess starting point for the trials. Just here to enable overloading.

Reimplemented in lsst::jointcal::TanRaDecToPixel, lsst::jointcal::TanPixelToRaDec, and lsst::jointcal::AstrometryTransformInverse.

Definition at line 194 of file AstrometryTransform.cc.

◆ toAstMap()

std::shared_ptr< ast::Mapping > lsst::jointcal::AstrometryTransformPolynomial::toAstMap ( jointcal::Frame const &  domain) const
overridevirtualinherited

Create an equivalent AST mapping for this transformation, including an analytic inverse if possible.

Parameters
domainThe domain of the transform, to help find an inverse.
Returns
An AST Mapping that represents this transformation.

Reimplemented from lsst::jointcal::AstrometryTransform.

Definition at line 1082 of file AstrometryTransform.cc.

◆ transformErrors()

void lsst::jointcal::AstrometryTransform::transformErrors ( Point const &  where,
const double *  vIn,
double *  vOut 
) const
virtualinherited

transform errors (represented as double[3] in order V(xx),V(yy),Cov(xy))

Definition at line 161 of file AstrometryTransform.cc.

◆ transformPosAndErrors()

void lsst::jointcal::AstrometryTransformPolynomial::transformPosAndErrors ( const FatPoint in,
FatPoint out 
) const
overridevirtualinherited

a mix of apply and Derivative

Reimplemented from lsst::jointcal::AstrometryTransform.

Definition at line 654 of file AstrometryTransform.cc.

◆ transformStar()

void lsst::jointcal::AstrometryTransform::transformStar ( FatPoint in) const
inlineinherited

Definition at line 107 of file AstrometryTransform.h.

◆ write() [1/2]

void lsst::jointcal::AstrometryTransform::write ( const std::string fileName) const
inherited

Definition at line 245 of file AstrometryTransform.cc.

◆ write() [2/2]

void lsst::jointcal::AstrometryTransformPolynomial::write ( std::ostream s) const
overridevirtualinherited

Reimplemented from lsst::jointcal::AstrometryTransform.

Definition at line 1087 of file AstrometryTransform.cc.

Friends And Related Function Documentation

◆ AstrometryTransform

friend class AstrometryTransform
friend

Definition at line 482 of file AstrometryTransform.h.

◆ AstrometryTransformIdentity

friend class AstrometryTransformIdentity
friend

Definition at line 483 of file AstrometryTransform.h.

◆ AstrometryTransformPolynomial

friend class AstrometryTransformPolynomial
friend

Definition at line 484 of file AstrometryTransform.h.


The documentation for this class was generated from the following files: