LSST Applications 24.1.5,g02d81e74bb+fa3a7a026e,g180d380827+a53a32eff8,g2079a07aa2+86d27d4dc4,g2305ad1205+c0501b3732,g295015adf3+7d3e92f0ec,g2bbee38e9b+0e5473021a,g337abbeb29+0e5473021a,g33d1c0ed96+0e5473021a,g3a166c0a6a+0e5473021a,g3ddfee87b4+5dd1654d75,g48712c4677+3bf1020dcb,g487adcacf7+065c13d9cf,g50ff169b8f+96c6868917,g52b1c1532d+585e252eca,g591dd9f2cf+d7ac436cfb,g5a732f18d5+53520f316c,g64a986408d+fa3a7a026e,g858d7b2824+fa3a7a026e,g8a8a8dda67+585e252eca,g99cad8db69+a5a909b84f,g9ddcbc5298+9a081db1e4,ga1e77700b3+15fc3df1f7,ga8c6da7877+4cf350ccb2,gb0e22166c9+60f28cb32d,gba4ed39666+c2a2e4ac27,gbb8dafda3b+f991a0b59f,gc120e1dc64+9ccbfdb8be,gc28159a63d+0e5473021a,gcf0d15dbbd+5dd1654d75,gd96a1ce819+42fd0ee607,gdaeeff99f8+f9a426f77a,ge6526c86ff+0d71447b4b,ge79ae78c31+0e5473021a,gee10cc3b42+585e252eca,gff1a9f87cc+fa3a7a026e
LSST Data Management Base Package
Loading...
Searching...
No Matches
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.
 
std::size_t getNpar () const override
 Number of total parameters in this mapping.
 
double transform (MeasuredStar const &measuredStar, double value) const override
 Return the on-sky transformed flux for measuredStar on ccdImage.
 
double transformError (MeasuredStar const &measuredStar, double value, double valueErr) const override
 Return the on-sky transformed flux uncertainty for measuredStar on ccdImage.
 
void freezeErrorTransform () override
 Once this routine has been called, the error transform is not modified by offsetParams().
 
void computeParameterDerivatives (MeasuredStar const &measuredStar, double value, Eigen::Ref< Eigen::VectorXd > derivatives) const override
 Compute the derivatives with respect to the parameters (i.e.
 
void offsetParams (Eigen::VectorXd const &delta)
 Offset the transform parameters by delta.
 
Eigen::VectorXd getParameters () override
 
void getMappingIndices (IndexVector &indices) const override
 Gets how this set of parameters (of length getNpar()) map into the "grand" fit.
 
void print (std::ostream &out) const override
 Print a string representation of the contents of this mapping, for debugging.
 
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).
 
bool isFixed () const
 
Eigen::Index getIndex () const
 Get the index of this mapping in the grand fit.
 
void setIndex (Eigen::Index i)
 Set the index of this mapping in the grand fit.
 

Protected Attributes

Eigen::Index index
 
bool fixed
 

Detailed Description

A mapping containing a single photometryTransform.

Definition at line 136 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 143 of file PhotometryMapping.h.

144 : 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 171 of file PhotometryMapping.h.

172 {
173 if (fixed) {
174 return;
175 } else {
176 _transform->computeParameterDerivatives(measuredStar.x, measuredStar.y, value, derivatives);
177 }
178 }

◆ 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 166 of file PhotometryMapping.h.

166 {
167 _transformErrors = std::shared_ptr<PhotometryTransform>(_transform->clone());
168 }

◆ getIndex()

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

Get the index of this mapping in the grand fit.

Definition at line 121 of file PhotometryMapping.h.

◆ 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 192 of file PhotometryMapping.h.

192 {
193 if (indices.size() < getNpar()) indices.resize(getNpar());
194 for (std::size_t k = 0; k < getNpar(); ++k) {
195 indices[k] = index + k;
196 }
197 }
std::size_t getNpar() const override
Number of total parameters in this mapping.
T resize(T... args)
T size(T... args)

◆ getNpar()

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

Number of total parameters in this mapping.

Implements lsst::jointcal::PhotometryMappingBase.

Definition at line 147 of file PhotometryMapping.h.

147 {
148 if (fixed) {
149 return 0;
150 } else {
151 return _transform->getNpar();
152 }
153 }

◆ getParameters()

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

Implements lsst::jointcal::PhotometryMappingBase.

Definition at line 189 of file PhotometryMapping.h.

189{ return _transform->getParameters(); }

◆ getTransform()

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

Definition at line 205 of file PhotometryMapping.h.

205{ return _transform; }

◆ getTransformErrors()

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

Definition at line 207 of file PhotometryMapping.h.

207{ return _transformErrors; }

◆ isFixed()

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

Definition at line 102 of file PhotometryMapping.h.

102{ return fixed; }

◆ 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 186 of file PhotometryMapping.h.

186{ _transform->offsetParams(delta); }

◆ print()

void lsst::jointcal::PhotometryMapping::print ( std::ostream & out) const
inlineoverridevirtual

Print a string representation of the contents of this mapping, for debugging.

This string representation can be very verbose, as it contains all of the parameters of all of the transforms in this mapping.

Implements lsst::jointcal::PhotometryMappingBase.

Definition at line 200 of file PhotometryMapping.h.

200 {
201 out << "index: " << index << " fixed: " << fixed << " ";
202 _transform->print(out);
203 }

◆ setFixed()

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

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

Definition at line 101 of file PhotometryMapping.h.

101{ fixed = _fixed; }

◆ setIndex()

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

Set the index of this mapping in the grand fit.

Definition at line 124 of file PhotometryMapping.h.

124{ index = i; }

◆ 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 156 of file PhotometryMapping.h.

156 {
157 return _transform->transform(measuredStar.x, measuredStar.y, value);
158 }

◆ 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 161 of file PhotometryMapping.h.

161 {
162 return _transformErrors->transformError(measuredStar.x, measuredStar.y, value, valueErr);
163 }

Member Data Documentation

◆ fixed

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

Definition at line 130 of file PhotometryMapping.h.

◆ index

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

Definition at line 128 of file PhotometryMapping.h.


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