LSST Applications g0265f82a02+c6dfa2ddaf,g1162b98a3f+b2075782a9,g2079a07aa2+1b2e822518,g2bbee38e9b+c6dfa2ddaf,g337abbeb29+c6dfa2ddaf,g3ddfee87b4+a60788ef87,g50ff169b8f+2eb0e556e8,g52b1c1532d+90ebb246c7,g555ede804d+a60788ef87,g591dd9f2cf+ba8caea58f,g5ec818987f+864ee9cddb,g858d7b2824+9ee1ab4172,g876c692160+a40945ebb7,g8a8a8dda67+90ebb246c7,g8cdfe0ae6a+4fd9e222a8,g99cad8db69+5e309b7bc6,g9ddcbc5298+a1346535a5,ga1e77700b3+df8f93165b,ga8c6da7877+aa12a14d27,gae46bcf261+c6dfa2ddaf,gb0e22166c9+8634eb87fb,gb3f2274832+d0da15e3be,gba4ed39666+1ac82b564f,gbb8dafda3b+5dfd9c994b,gbeb006f7da+97157f9740,gc28159a63d+c6dfa2ddaf,gc86a011abf+9ee1ab4172,gcf0d15dbbd+a60788ef87,gdaeeff99f8+1cafcb7cd4,gdc0c513512+9ee1ab4172,ge79ae78c31+c6dfa2ddaf,geb67518f79+ba1859f325,geb961e4c1e+f9439d1e6f,gee10cc3b42+90ebb246c7,gf1cff7945b+9ee1ab4172,w.2024.12
LSST Data Management Base Package
Loading...
Searching...
No Matches
Public Member Functions | Protected Member Functions | List of all members
lsst::jointcal::PhotometryTransformSpatiallyInvariant Class Referenceabstract

Photometry offset independent of position. More...

#include <PhotometryTransform.h>

Inheritance diagram for lsst::jointcal::PhotometryTransformSpatiallyInvariant:
lsst::jointcal::PhotometryTransform lsst::jointcal::FluxTransformSpatiallyInvariant lsst::jointcal::MagnitudeTransformSpatiallyInvariant

Public Member Functions

 PhotometryTransformSpatiallyInvariant (double value)
 
void print (std::ostream &out) const override
 Print the transform coefficients to stream.
 
std::size_t getNpar () const override
 Return the number of parameters (used to compute chisq)
 
void offsetParams (Eigen::VectorXd const &delta) override
 Offset the parameters by some (negative) amount during fitting.
 
Eigen::VectorXd getParameters () const override
 Get a copy of the parameters of this model, in the same order as offsetParams.
 
virtual double transform (double x, double y, double value) const =0
 Return the transform of value at (x,y).
 
double transform (Point const &in, double value) const
 Return the transformed value at Point(x,y).
 
virtual double transformError (double x, double y, double value, double valueErr) const =0
 Return the transformed valueErr at Point(x,y).
 
double transformError (Point const &in, double value, double valueErr) const
 Return the transformed valueErr at Point(x,y).
 
virtual std::shared_ptr< PhotometryTransformclone () const =0
 return a copy (allocated by new) of the transformation.
 
virtual void computeParameterDerivatives (double x, double y, double value, Eigen::Ref< Eigen::VectorXd > derivatives) const =0
 Compute the derivatives with respect to the parameters (i.e.
 

Protected Member Functions

double getValue () const
 

Detailed Description

Photometry offset independent of position.

Abstract class.

Definition at line 111 of file PhotometryTransform.h.

Constructor & Destructor Documentation

◆ PhotometryTransformSpatiallyInvariant()

lsst::jointcal::PhotometryTransformSpatiallyInvariant::PhotometryTransformSpatiallyInvariant ( double value)
inlineexplicit

Definition at line 113 of file PhotometryTransform.h.

113: _value(value) {}

Member Function Documentation

◆ clone()

virtual std::shared_ptr< PhotometryTransform > lsst::jointcal::PhotometryTransform::clone ( ) const
pure virtualinherited

◆ computeParameterDerivatives()

virtual void lsst::jointcal::PhotometryTransform::computeParameterDerivatives ( double x,
double y,
double value,
Eigen::Ref< Eigen::VectorXd > derivatives ) const
pure virtualinherited

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

the coefficients).

Parameters
[in]xThe x coordinate to compute at (in the appropriate units for this transform).
[in]yThe y coordinate to compute at (in the appropriate units for this 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.

Implemented in lsst::jointcal::FluxTransformSpatiallyInvariant, lsst::jointcal::MagnitudeTransformSpatiallyInvariant, lsst::jointcal::FluxTransformChebyshev, and lsst::jointcal::MagnitudeTransformChebyshev.

◆ getNpar()

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

Return the number of parameters (used to compute chisq)

Implements lsst::jointcal::PhotometryTransform.

Definition at line 121 of file PhotometryTransform.h.

121{ return 1; }

◆ getParameters()

Eigen::VectorXd lsst::jointcal::PhotometryTransformSpatiallyInvariant::getParameters ( ) const
inlineoverridevirtual

Get a copy of the parameters of this model, in the same order as offsetParams.

Implements lsst::jointcal::PhotometryTransform.

Definition at line 127 of file PhotometryTransform.h.

127 {
128 Eigen::VectorXd parameters(1);
129 parameters[0] = _value;
130 return parameters;
131 }

◆ getValue()

double lsst::jointcal::PhotometryTransformSpatiallyInvariant::getValue ( ) const
inlineprotected

Definition at line 134 of file PhotometryTransform.h.

134{ return _value; }

◆ offsetParams()

void lsst::jointcal::PhotometryTransformSpatiallyInvariant::offsetParams ( Eigen::VectorXd const & delta)
inlineoverridevirtual

Offset the parameters by some (negative) amount during fitting.

Equivalent to flatten(parameters) -= delta

Ordering of delta is the same as the ordering of the derivatives returned from computeParameterDerivatives.

Implements lsst::jointcal::PhotometryTransform.

Definition at line 124 of file PhotometryTransform.h.

124{ _value -= delta[0]; };

◆ print()

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

Print the transform coefficients to stream.

Implements lsst::jointcal::PhotometryTransform.

Definition at line 116 of file PhotometryTransform.h.

116 {
117 out << "PhotometryTransformSpatiallyInvariant: " << std::setprecision(10) << _value;
118 }
T setprecision(T... args)

◆ transform() [1/2]

virtual double lsst::jointcal::PhotometryTransform::transform ( double x,
double y,
double value ) const
pure virtualinherited

◆ transform() [2/2]

double lsst::jointcal::PhotometryTransform::transform ( Point const & in,
double value ) const
inlineinherited

Return the transformed value at Point(x,y).

Definition at line 58 of file PhotometryTransform.h.

58{ return transform(in.x, in.y, value); }
table::Key< int > transform

◆ transformError() [1/2]

virtual double lsst::jointcal::PhotometryTransform::transformError ( double x,
double y,
double value,
double valueErr ) const
pure virtualinherited

◆ transformError() [2/2]

double lsst::jointcal::PhotometryTransform::transformError ( Point const & in,
double value,
double valueErr ) const
inlineinherited

Return the transformed valueErr at Point(x,y).

Definition at line 64 of file PhotometryTransform.h.

64 {
65 return transformError(in.x, in.y, value, valueErr);
66 }
virtual double transformError(double x, double y, double value, double valueErr) const =0
Return the transformed valueErr at Point(x,y).

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