LSSTApplications  18.0.0+106,18.0.0+50,19.0.0,19.0.0+1,19.0.0+10,19.0.0+11,19.0.0+13,19.0.0+17,19.0.0+2,19.0.0-1-g20d9b18+6,19.0.0-1-g425ff20,19.0.0-1-g5549ca4,19.0.0-1-g580fafe+6,19.0.0-1-g6fe20d0+1,19.0.0-1-g7011481+9,19.0.0-1-g8c57eb9+6,19.0.0-1-gb5175dc+11,19.0.0-1-gdc0e4a7+9,19.0.0-1-ge272bc4+6,19.0.0-1-ge3aa853,19.0.0-10-g448f008b,19.0.0-12-g6990b2c,19.0.0-2-g0d9f9cd+11,19.0.0-2-g3d9e4fb2+11,19.0.0-2-g5037de4,19.0.0-2-gb96a1c4+3,19.0.0-2-gd955cfd+15,19.0.0-3-g2d13df8,19.0.0-3-g6f3c7dc,19.0.0-4-g725f80e+11,19.0.0-4-ga671dab3b+1,19.0.0-4-gad373c5+3,19.0.0-5-ga2acb9c+2,19.0.0-5-gfe96e6c+2,w.2020.01
LSSTDataManagementBasePackage
Public Member Functions | Protected Attributes | List of all members
lsst::jointcal::PhotometryMapping Class Reference

A mapping containing a single photometryTransform. More...

#include <PhotometryMapping.h>

Inheritance diagram for lsst::jointcal::PhotometryMapping:
lsst::jointcal::PhotometryMappingBase

Public Member Functions

 PhotometryMapping (std::shared_ptr< PhotometryTransform > transform)
 Value transform takes ownership of transform, error transform aliases it. More...
 
std::size_t getNpar () const override
 Number of total parameters in this mapping. More...
 
double transform (MeasuredStar const &measuredStar, double value) const override
 Return the on-sky transformed flux for measuredStar on ccdImage. More...
 
double transformError (MeasuredStar const &measuredStar, double value, double valueErr) const override
 Return the on-sky transformed flux uncertainty for measuredStar on ccdImage. More...
 
void freezeErrorTransform () override
 Once this routine has been called, the error transform is not modified by offsetParams(). More...
 
void computeParameterDerivatives (MeasuredStar const &measuredStar, double value, Eigen::Ref< Eigen::VectorXd > derivatives) const override
 Compute the derivatives with respect to the parameters (i.e. More...
 
void offsetParams (Eigen::VectorXd const &delta)
 Offset the transform parameters by delta. More...
 
Eigen::VectorXd getParameters () override
 
void getMappingIndices (IndexVector &indices) const override
 Gets how this set of parameters (of length getNpar()) map into the "grand" fit. More...
 
void dump (std::ostream &stream=std::cout) const override
 Dump the contents of the transforms, for debugging. More...
 
std::shared_ptr< PhotometryTransformgetTransform () const
 
std::shared_ptr< PhotometryTransformgetTransformErrors () const
 
void setFixed (bool _fixed)
 Make this mapping's parameters fixed (i.e. not varied during fitting). More...
 
bool isFixed ()
 
Eigen::Index getIndex ()
 Get the index of this mapping in the grand fit. More...
 
void setIndex (Eigen::Index i)
 Set the index of this mapping in the grand fit. More...
 

Protected Attributes

Eigen::Index index
 
bool fixed
 

Detailed Description

A mapping containing a single photometryTransform.

Definition at line 130 of file PhotometryMapping.h.

Constructor & Destructor Documentation

◆ PhotometryMapping()

lsst::jointcal::PhotometryMapping::PhotometryMapping ( std::shared_ptr< PhotometryTransform transform)
inlineexplicit

Value transform takes ownership of transform, error transform aliases it.

Call freezeErrorTransform() to unalias the error transform.

Definition at line 137 of file PhotometryMapping.h.

138  : PhotometryMappingBase(), _transform(std::move(transform)), _transformErrors(_transform) {}
T move(T... args)

Member Function Documentation

◆ computeParameterDerivatives()

void lsst::jointcal::PhotometryMapping::computeParameterDerivatives ( MeasuredStar const &  measuredStar,
double  value,
Eigen::Ref< Eigen::VectorXd >  derivatives 
) const
inlineoverridevirtual

Compute the derivatives with respect to the parameters (i.e.

the coefficients).

Parameters
[in]measuredStarThe measured star position to transform.
[in]valueThe instrument flux or magnitude to compute the derivative at.
[out]derivativesThe computed derivatives, in the same order as the deltas in offsetParams.

Implements lsst::jointcal::PhotometryMappingBase.

Definition at line 165 of file PhotometryMapping.h.

166  {
167  if (fixed) {
168  return;
169  } else {
170  _transform->computeParameterDerivatives(measuredStar.x, measuredStar.y, value, derivatives);
171  }
172  }

◆ dump()

void lsst::jointcal::PhotometryMapping::dump ( std::ostream stream = std::cout) const
inlineoverridevirtual

Dump the contents of the transforms, for debugging.

Implements lsst::jointcal::PhotometryMappingBase.

Definition at line 194 of file PhotometryMapping.h.

194  {
195  stream << "index: " << index << " fixed: " << fixed << " transform parameters: ";
196  _transform->dump(stream);
197  }

◆ freezeErrorTransform()

void lsst::jointcal::PhotometryMapping::freezeErrorTransform ( )
inlineoverridevirtual

Once this routine has been called, the error transform is not modified by offsetParams().

The routine can be called when the mappings are roughly in place. After the call, the transformations used to propagate errors are no longer affected when updating the mappings. This allows an exactly linear fit, which can be necessary for some model+data combinations.

Implements lsst::jointcal::PhotometryMappingBase.

Definition at line 160 of file PhotometryMapping.h.

160  {
161  _transformErrors = std::shared_ptr<PhotometryTransform>(_transform->clone());
162  }

◆ getIndex()

Eigen::Index lsst::jointcal::PhotometryMappingBase::getIndex ( )
inlineinherited

Get the index of this mapping in the grand fit.

Definition at line 115 of file PhotometryMapping.h.

115 { return index; }

◆ getMappingIndices()

void lsst::jointcal::PhotometryMapping::getMappingIndices ( IndexVector indices) const
inlineoverridevirtual

Gets how this set of parameters (of length getNpar()) map into the "grand" fit.

Expects that indices has enough space reserved.

Implements lsst::jointcal::PhotometryMappingBase.

Definition at line 186 of file PhotometryMapping.h.

186  {
187  if (indices.size() < getNpar()) indices.resize(getNpar());
188  for (std::size_t k = 0; k < getNpar(); ++k) {
189  indices[k] = index + k;
190  }
191  }
T resize(T... args)
T size(T... args)
std::size_t getNpar() const override
Number of total parameters in this mapping.

◆ getNpar()

std::size_t lsst::jointcal::PhotometryMapping::getNpar ( ) const
inlineoverridevirtual

Number of total parameters in this mapping.

Implements lsst::jointcal::PhotometryMappingBase.

Definition at line 141 of file PhotometryMapping.h.

141  {
142  if (fixed) {
143  return 0;
144  } else {
145  return _transform->getNpar();
146  }
147  }

◆ getParameters()

Eigen::VectorXd lsst::jointcal::PhotometryMapping::getParameters ( )
inlineoverridevirtual

Implements lsst::jointcal::PhotometryMappingBase.

Definition at line 183 of file PhotometryMapping.h.

183 { return _transform->getParameters(); }

◆ getTransform()

std::shared_ptr<PhotometryTransform> lsst::jointcal::PhotometryMapping::getTransform ( ) const
inline

Definition at line 199 of file PhotometryMapping.h.

199 { return _transform; }

◆ getTransformErrors()

std::shared_ptr<PhotometryTransform> lsst::jointcal::PhotometryMapping::getTransformErrors ( ) const
inline

Definition at line 201 of file PhotometryMapping.h.

201 { return _transformErrors; }

◆ isFixed()

bool lsst::jointcal::PhotometryMappingBase::isFixed ( )
inlineinherited

Definition at line 101 of file PhotometryMapping.h.

◆ offsetParams()

void lsst::jointcal::PhotometryMapping::offsetParams ( Eigen::VectorXd const &  delta)
inline

Offset the transform parameters by delta.

Parameters
[in]deltavector to offset transform parameters. Same ordering as derivatives in computeParameterDerivatives();

Definition at line 180 of file PhotometryMapping.h.

180 { _transform->offsetParams(delta); }

◆ setFixed()

void lsst::jointcal::PhotometryMappingBase::setFixed ( bool  _fixed)
inlineinherited

Make this mapping's parameters fixed (i.e. not varied during fitting).

Definition at line 100 of file PhotometryMapping.h.

◆ setIndex()

void lsst::jointcal::PhotometryMappingBase::setIndex ( Eigen::Index  i)
inlineinherited

Set the index of this mapping in the grand fit.

Definition at line 118 of file PhotometryMapping.h.

◆ transform()

double lsst::jointcal::PhotometryMapping::transform ( MeasuredStar const &  measuredStar,
double  value 
) const
inlineoverridevirtual

Return the on-sky transformed flux for measuredStar on ccdImage.

Parameters
[in]measuredStarThe measured star position to transform.
[in]valueThe instrument flux or magnitude to transform.
Returns
The on-sky value () transformed from value at measuredStar's position.

Implements lsst::jointcal::PhotometryMappingBase.

Definition at line 150 of file PhotometryMapping.h.

150  {
151  return _transform->transform(measuredStar.x, measuredStar.y, value);
152  }

◆ transformError()

double lsst::jointcal::PhotometryMapping::transformError ( MeasuredStar const &  measuredStar,
double  value,
double  valueErr 
) const
inlineoverridevirtual

Return the on-sky transformed flux uncertainty for measuredStar on ccdImage.

Matches the underlying PhotometryTransform's transformError() until freezeErrorTransform() is called.

Parameters
[in]measuredStarThe measured star position to transform.
[in]valueThe flux or magnitude to transform.
[in]valueErrThe flux or magnitude uncertainty to transform.
Returns
The on-sky value transformed from value at measuredStar's position.

Implements lsst::jointcal::PhotometryMappingBase.

Definition at line 155 of file PhotometryMapping.h.

155  {
156  return _transformErrors->transformError(measuredStar.x, measuredStar.y, value, valueErr);
157  }

Member Data Documentation

◆ fixed

bool lsst::jointcal::PhotometryMappingBase::fixed
protectedinherited

Definition at line 124 of file PhotometryMapping.h.

◆ index

Eigen::Index lsst::jointcal::PhotometryMappingBase::index
protectedinherited

Definition at line 122 of file PhotometryMapping.h.


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