LSSTApplications  16.0-10-g4f78f78+16,16.0-10-gc1446dd+42,16.0-11-g09ed895+1,16.0-13-g7649090,16.0-14-g0a28612+1,16.0-14-g6c7ed55+16,16.0-15-ga29f190+1,16.0-16-g89065d4+14,16.0-16-gd8e3590+16,16.0-16-ge6a35c8+6,16.0-17-g7e0e4ff+10,16.0-17-ga3d2e9f,16.0-19-gb830ed4e+16,16.0-2-g0febb12+21,16.0-2-g9d5294e+61,16.0-2-ga8830df+5,16.0-24-gc1c7f52+9,16.0-25-g07af9f2+1,16.0-3-ge00e371+21,16.0-36-g07840cb1,16.0-4-g18f3627+5,16.0-4-g5f3a788+20,16.0-4-ga3eb747+10,16.0-4-gabf74b7+16,16.0-4-gade8416+9,16.0-4-gb13d127+5,16.0-5-g6a53317+21,16.0-5-gb3f8a4b+74,16.0-5-gef99c9f+12,16.0-6-g9321be7+4,16.0-6-gcbc7b31+22,16.0-6-gf49912c+16,16.0-63-gae20905ba,16.0-7-gd2eeba5+31,16.0-8-g21fd5fe+16,16.0-8-g3a9f023+12,16.0-8-g4734f7a,16.0-9-g85d1a16+16,16.0-9-gf5c1f43,master-g07ce7b41a7,w.2018.48
LSSTDataManagementBasePackage
Classes | Public Member Functions | Friends | List of all members
lsst::jointcal::TwoTransfoMapping Class Reference

The mapping with two transfos in a row. More...

#include <TwoTransfoMapping.h>

Inheritance diagram for lsst::jointcal::TwoTransfoMapping:
lsst::jointcal::AstrometryMapping

Public Member Functions

 TwoTransfoMapping (std::shared_ptr< SimpleGtransfoMapping > chipMapping, std::shared_ptr< SimpleGtransfoMapping > visitMapping)
 
 TwoTransfoMapping (TwoTransfoMapping const &)=delete
 No copy or move: there is only ever one instance of a given model (i.e.. per ccd+visit) More...
 
 TwoTransfoMapping (TwoTransfoMapping &&)=delete
 
TwoTransfoMappingoperator= (TwoTransfoMapping const &)=delete
 
TwoTransfoMappingoperator= (TwoTransfoMapping &&)=delete
 
unsigned getNpar () const
 Number of parameters in total. More...
 
void getMappingIndices (std::vector< unsigned > &indices) const
 Sets how this set of parameters (of length Npar()) map into the "grand" fit Expects that indices has enough space reserved. More...
 
void computeTransformAndDerivatives (FatPoint const &where, FatPoint &outPoint, Eigen::MatrixX2d &H) const
 Actually applies the AstrometryMapping and evaluates the derivatives w.r.t the fitted parameters. More...
 
void transformPosAndErrors (FatPoint const &where, FatPoint &outPoint) const
 The same as above but without the parameter derivatives (used to evaluate chi^2) More...
 
void offsetParams (Eigen::VectorXd const &delta)
 Remember the error scale and freeze it. More...
 
Gtransfo const & getTransfo1 () const
 access to transfos More...
 
Gtransfo const & getTransfo2 () const
 access to transfos More...
 
void positionDerivative (Point const &where, Eigen::Matrix2d &derivative, double epsilon) const
 Currently not implemented. More...
 
void freezeErrorTransform ()
 Currently not implemented. More...
 

Friends

class ConstrainedAstrometryModel
 

Detailed Description

The mapping with two transfos in a row.

Definition at line 38 of file TwoTransfoMapping.h.

Constructor & Destructor Documentation

◆ TwoTransfoMapping() [1/3]

lsst::jointcal::TwoTransfoMapping::TwoTransfoMapping ( std::shared_ptr< SimpleGtransfoMapping chipMapping,
std::shared_ptr< SimpleGtransfoMapping visitMapping 
)

Definition at line 33 of file TwoTransfoMapping.cc.

35  : _m1(chipMapping), _m2(visitMapping) {
36  /* Allocate the record of temporary variables, so that they are not
37  allocated at every call. This is hidden behind a pointer in order
38  to be allowed to alter them in a const routine. */
39  tmp = std::unique_ptr<tmpVars>(new tmpVars);
40  setWhatToFit(true, true);
41 }

◆ TwoTransfoMapping() [2/3]

lsst::jointcal::TwoTransfoMapping::TwoTransfoMapping ( TwoTransfoMapping const &  )
delete

No copy or move: there is only ever one instance of a given model (i.e.. per ccd+visit)

◆ TwoTransfoMapping() [3/3]

lsst::jointcal::TwoTransfoMapping::TwoTransfoMapping ( TwoTransfoMapping &&  )
delete

Member Function Documentation

◆ computeTransformAndDerivatives()

void lsst::jointcal::TwoTransfoMapping::computeTransformAndDerivatives ( FatPoint const &  where,
FatPoint outPoint,
Eigen::MatrixX2d H 
) const
virtual

Actually applies the AstrometryMapping and evaluates the derivatives w.r.t the fitted parameters.

This is grouped into a single call because for most models, evaluating the derivatives w.r.T parameters is not much longer than just transforming

Implements lsst::jointcal::AstrometryMapping.

Definition at line 62 of file TwoTransfoMapping.cc.

63  {
64  // not true in general. Will crash if H is too small.
65  // assert(H.cols()==Npar());
66 
67  FatPoint pMid;
68  // don't need errors there but no Mapping::Transform() routine.
69 
70  if (_nPar1) {
71  _m1->computeTransformAndDerivatives(where, pMid, tmp->h1);
72  // the last argument is epsilon and is not used for polynomials
73  _m2->positionDerivative(pMid, tmp->dt2dx, 1e-4);
74  H.block(0, 0, _nPar1, 2) = tmp->h1 * tmp->dt2dx;
75  } else
76  _m1->transformPosAndErrors(where, pMid);
77  if (_nPar2) {
78  _m2->computeTransformAndDerivatives(pMid, outPoint, tmp->h2);
79  H.block(_nPar1, 0, _nPar2, 2) = tmp->h2;
80  } else
81  _m2->transformPosAndErrors(pMid, outPoint);
82 }

◆ freezeErrorTransform()

void lsst::jointcal::TwoTransfoMapping::freezeErrorTransform ( )

Currently not implemented.

Definition at line 119 of file TwoTransfoMapping.cc.

119  {
120  throw LSST_EXCEPT(
122  " The routine TwoTransfoMapping::freezeErrorTransform() was thought to be useless and is "
123  "not implemented (yet)");
124 }
#define LSST_EXCEPT(type,...)
Create an exception with a given type.
Definition: Exception.h:48
Reports errors from accepting an object of an unexpected or inappropriate type.
Definition: Runtime.h:167

◆ getMappingIndices()

void lsst::jointcal::TwoTransfoMapping::getMappingIndices ( std::vector< unsigned > &  indices) const
virtual

Sets how this set of parameters (of length Npar()) map into the "grand" fit Expects that indices has enough space reserved.

Implements lsst::jointcal::AstrometryMapping.

Definition at line 45 of file TwoTransfoMapping.cc.

45  {
46  unsigned npar = getNpar();
47  if (indices.size() < npar) indices.resize(npar);
48  // in case we are only fitting one of the two transfos
49  if (_nPar1)
50  _m1->getMappingIndices(indices);
51  else if (_nPar2) {
52  _m2->getMappingIndices(indices);
53  return;
54  }
55  // if we get here we are fitting both
56  // there is probably a more elegant way to feed a subpart of a std::vector
57  std::vector<unsigned> ind2(_nPar2);
58  _m2->getMappingIndices(ind2);
59  for (unsigned k = 0; k < _nPar2; ++k) indices.at(k + _nPar1) = ind2.at(k);
60 }
unsigned getNpar() const
Number of parameters in total.
T resize(T... args)
T at(T... args)
T size(T... args)

◆ getNpar()

unsigned lsst::jointcal::TwoTransfoMapping::getNpar ( ) const
virtual

Number of parameters in total.

Implements lsst::jointcal::AstrometryMapping.

Definition at line 43 of file TwoTransfoMapping.cc.

43 { return _nPar1 + _nPar2; }

◆ getTransfo1()

Gtransfo const& lsst::jointcal::TwoTransfoMapping::getTransfo1 ( ) const
inline

access to transfos

Definition at line 72 of file TwoTransfoMapping.h.

72 { return _m1->getTransfo(); }

◆ getTransfo2()

Gtransfo const& lsst::jointcal::TwoTransfoMapping::getTransfo2 ( ) const
inline

access to transfos

Definition at line 75 of file TwoTransfoMapping.h.

75 { return _m2->getTransfo(); }

◆ offsetParams()

void lsst::jointcal::TwoTransfoMapping::offsetParams ( Eigen::VectorXd const &  delta)
inlinevirtual

Remember the error scale and freeze it.

Note
this routine is not used when fitting (the Model manages the mappings separately), but can be useful for debugging

Implements lsst::jointcal::AstrometryMapping.

Definition at line 66 of file TwoTransfoMapping.h.

66  {
67  _m1->offsetParams(delta.segment(_m1->getIndex(), _m1->getNpar()));
68  _m2->offsetParams(delta.segment(_m2->getIndex() + _m1->getNpar(), _m2->getNpar()));
69  }

◆ operator=() [1/2]

TwoTransfoMapping& lsst::jointcal::TwoTransfoMapping::operator= ( TwoTransfoMapping const &  )
delete

◆ operator=() [2/2]

TwoTransfoMapping& lsst::jointcal::TwoTransfoMapping::operator= ( TwoTransfoMapping &&  )
delete

◆ positionDerivative()

void lsst::jointcal::TwoTransfoMapping::positionDerivative ( Point const &  where,
Eigen::Matrix2d &  derivative,
double  epsilon 
) const
virtual

Currently not implemented.

Implements lsst::jointcal::AstrometryMapping.

Definition at line 107 of file TwoTransfoMapping.cc.

108  {
109  Eigen::Matrix2d d1, d2; // seems that it does not trigger dynamic allocation
110  _m1->positionDerivative(where, d1, 1e-4);
111  FatPoint pMid;
112  _m1->transformPosAndErrors(where, pMid);
113  _m2->positionDerivative(pMid, d2, 1e-4);
114  /* The following line is not a mistake. It is a consequence
115  of chosing derivative(0,1) = d(y_out)/d x_in. */
116  derivative = d1 * d2;
117 }

◆ transformPosAndErrors()

void lsst::jointcal::TwoTransfoMapping::transformPosAndErrors ( FatPoint const &  where,
FatPoint outPoint 
) const
virtual

The same as above but without the parameter derivatives (used to evaluate chi^2)

Implements lsst::jointcal::AstrometryMapping.

Definition at line 101 of file TwoTransfoMapping.cc.

101  {
102  FatPoint pMid;
103  _m1->transformPosAndErrors(where, pMid);
104  _m2->transformPosAndErrors(pMid, outPoint);
105 }

Friends And Related Function Documentation

◆ ConstrainedAstrometryModel

friend class ConstrainedAstrometryModel
friend

Definition at line 84 of file TwoTransfoMapping.h.


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