lsst.jointcal  16.0-15-g8e16a51+13
Public Member Functions | Protected Attributes | List of all members
lsst::jointcal::ChipVisitFluxMapping Class Reference

#include <PhotometryMapping.h>

Inheritance diagram for lsst::jointcal::ChipVisitFluxMapping:
lsst::jointcal::ChipVisitPhotometryMapping lsst::jointcal::PhotometryMappingBase

Public Member Functions

 ChipVisitFluxMapping (std::shared_ptr< PhotometryMapping > chipMapping, std::shared_ptr< PhotometryMapping > visitMapping)
 
double transformError (MeasuredStar const &measuredStar, double value, double valueErr) const override
 Return the on-sky transformed flux uncertainty for measuredStar on ccdImage. 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...
 
unsigned 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...
 
void freezeErrorTransform () override
 Once this routine has been called, the error transform is not modified by offsetParams(). More...
 
Eigen::VectorXd getParameters () override
 
void getMappingIndices (std::vector< unsigned > &indices) const override
 Gets how this set of parameters (of length getNpar()) map into the "grand" fit. More...
 
void setWhatToFit (bool const fittingChips, bool const fittingVisits)
 Set whether to fit chips or visits. More...
 
void dump (std::ostream &stream=std::cout) const override
 Dump the contents of the transfos, for debugging. More...
 
std::shared_ptr< PhotometryMappinggetChipMapping () const
 
std::shared_ptr< PhotometryMappinggetVisitMapping () const
 
unsigned getNParChip () const
 
unsigned getNParVisit () const
 
void setFixed (bool _fixed)
 Make this mapping's parameters fixed (i.e. not varied during fitting). More...
 
bool isFixed ()
 
unsigned getIndex ()
 Get the index of this mapping in the grand fit. More...
 
void setIndex (unsigned i)
 Set the index of this mapping in the grand fit. More...
 

Protected Attributes

unsigned _nParChip
 
unsigned _nParVisit
 
std::shared_ptr< PhotometryMapping_chipMapping
 
std::shared_ptr< PhotometryMapping_visitMapping
 
unsigned index
 
bool fixed
 

Detailed Description

Definition at line 260 of file PhotometryMapping.h.

Constructor & Destructor Documentation

◆ ChipVisitFluxMapping()

lsst::jointcal::ChipVisitFluxMapping::ChipVisitFluxMapping ( std::shared_ptr< PhotometryMapping chipMapping,
std::shared_ptr< PhotometryMapping visitMapping 
)
inline

Definition at line 262 of file PhotometryMapping.h.

Member Function Documentation

◆ computeParameterDerivatives()

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

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 58 of file PhotometryMapping.cc.

◆ dump()

void lsst::jointcal::ChipVisitPhotometryMapping::dump ( std::ostream stream = std::cout) const
inlineoverridevirtualinherited

Dump the contents of the transfos, for debugging.

Implements lsst::jointcal::PhotometryMappingBase.

Definition at line 238 of file PhotometryMapping.h.

◆ freezeErrorTransform()

void lsst::jointcal::ChipVisitPhotometryMapping::freezeErrorTransform ( )
inlineoverridevirtualinherited

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

◆ getChipMapping()

std::shared_ptr<PhotometryMapping> lsst::jointcal::ChipVisitPhotometryMapping::getChipMapping ( ) const
inlineinherited

Definition at line 245 of file PhotometryMapping.h.

◆ getIndex()

unsigned lsst::jointcal::PhotometryMappingBase::getIndex ( )
inlineinherited

Get the index of this mapping in the grand fit.

Definition at line 92 of file PhotometryMapping.h.

◆ getMappingIndices()

void lsst::jointcal::ChipVisitPhotometryMapping::getMappingIndices ( std::vector< unsigned > &  indices) const
overridevirtualinherited

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 15 of file PhotometryMapping.cc.

◆ getNpar()

unsigned lsst::jointcal::ChipVisitPhotometryMapping::getNpar ( ) const
inlineoverridevirtualinherited

Number of total parameters in this mapping.

Implements lsst::jointcal::PhotometryMappingBase.

Definition at line 201 of file PhotometryMapping.h.

◆ getNParChip()

unsigned lsst::jointcal::ChipVisitPhotometryMapping::getNParChip ( ) const
inlineinherited

Definition at line 248 of file PhotometryMapping.h.

◆ getNParVisit()

unsigned lsst::jointcal::ChipVisitPhotometryMapping::getNParVisit ( ) const
inlineinherited

Definition at line 249 of file PhotometryMapping.h.

◆ getParameters()

Eigen::VectorXd lsst::jointcal::ChipVisitPhotometryMapping::getParameters ( )
inlineoverridevirtualinherited

Implements lsst::jointcal::PhotometryMappingBase.

Definition at line 217 of file PhotometryMapping.h.

◆ getVisitMapping()

std::shared_ptr<PhotometryMapping> lsst::jointcal::ChipVisitPhotometryMapping::getVisitMapping ( ) const
inlineinherited

Definition at line 246 of file PhotometryMapping.h.

◆ isFixed()

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

Definition at line 78 of file PhotometryMapping.h.

◆ setFixed()

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

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

Definition at line 77 of file PhotometryMapping.h.

◆ setIndex()

void lsst::jointcal::PhotometryMappingBase::setIndex ( unsigned  i)
inlineinherited

Set the index of this mapping in the grand fit.

Definition at line 95 of file PhotometryMapping.h.

◆ setWhatToFit()

void lsst::jointcal::ChipVisitPhotometryMapping::setWhatToFit ( bool const  fittingChips,
bool const  fittingVisits 
)
inherited

Set whether to fit chips or visits.

This must be called before anything that depends on knowing the number of parameters in the fit, such as offsetParams(), getParameters(), or computeParameterDerivatives().

Parameters
fittingChipsFit the chip transform.
fittingVisitsFit the visit transform.

Definition at line 34 of file PhotometryMapping.cc.

◆ transform()

double lsst::jointcal::ChipVisitPhotometryMapping::transform ( MeasuredStar const &  measuredStar,
double  value 
) const
inlineoverridevirtualinherited

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

◆ transformError()

double lsst::jointcal::ChipVisitFluxMapping::transformError ( MeasuredStar const &  measuredStar,
double  value,
double  valueErr 
) const
overridevirtual

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

Matches the underlying PhotometryTransfo'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 49 of file PhotometryMapping.cc.

Member Data Documentation

◆ _chipMapping

std::shared_ptr<PhotometryMapping> lsst::jointcal::ChipVisitPhotometryMapping::_chipMapping
protectedinherited

Definition at line 256 of file PhotometryMapping.h.

◆ _nParChip

unsigned lsst::jointcal::ChipVisitPhotometryMapping::_nParChip
protectedinherited

Definition at line 253 of file PhotometryMapping.h.

◆ _nParVisit

unsigned lsst::jointcal::ChipVisitPhotometryMapping::_nParVisit
protectedinherited

Definition at line 253 of file PhotometryMapping.h.

◆ _visitMapping

std::shared_ptr<PhotometryMapping> lsst::jointcal::ChipVisitPhotometryMapping::_visitMapping
protectedinherited

Definition at line 257 of file PhotometryMapping.h.

◆ fixed

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

Definition at line 101 of file PhotometryMapping.h.

◆ index

unsigned lsst::jointcal::PhotometryMappingBase::index
protectedinherited

Definition at line 99 of file PhotometryMapping.h.


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