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 Member Functions | List of all members
lsst::jointcal::FluxTransformSpatiallyInvariant Class Reference

Photometric offset independent of position, defined as (fluxMag0)^-1. More...

#include <PhotometryTransform.h>

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

Public Member Functions

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

Protected Member Functions

double getValue () const
 

Detailed Description

Photometric offset independent of position, defined as (fluxMag0)^-1.

initialCalibFlux * SpatiallyInvariantTransform -> correctedFlux

Definition at line 144 of file PhotometryTransform.h.

Constructor & Destructor Documentation

◆ FluxTransformSpatiallyInvariant()

lsst::jointcal::FluxTransformSpatiallyInvariant::FluxTransformSpatiallyInvariant ( double  value = 1)
inlineexplicit

Member Function Documentation

◆ clone()

std::shared_ptr<PhotometryTransform> lsst::jointcal::FluxTransformSpatiallyInvariant::clone ( ) const
inlineoverridevirtual

return a copy (allocated by new) of the transformation.

Implements lsst::jointcal::PhotometryTransform.

Definition at line 158 of file PhotometryTransform.h.

158  {
159  return std::make_shared<FluxTransformSpatiallyInvariant>(getValue());
160  }

◆ computeParameterDerivatives()

void lsst::jointcal::FluxTransformSpatiallyInvariant::computeParameterDerivatives ( double  x,
double  y,
double  value,
Eigen::Ref< Eigen::VectorXd >  derivatives 
) const
inlineoverridevirtual

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.

Implements lsst::jointcal::PhotometryTransform.

Definition at line 163 of file PhotometryTransform.h.

164  {
165  // the derivative of a spatially constant transform w.r.t. that value is just the value.
166  derivatives[0] = value;
167  }

◆ dump()

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

dumps the transform coefficients to stream.

Implements lsst::jointcal::PhotometryTransform.

Definition at line 115 of file PhotometryTransform.h.

115 { stream << std::setprecision(10) << _value; }
T setprecision(T... args)

◆ getNpar()

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

Return the number of parameters (used to compute chisq)

Implements lsst::jointcal::PhotometryTransform.

Definition at line 118 of file PhotometryTransform.h.

118 { return 1; }

◆ getParameters()

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

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

Implements lsst::jointcal::PhotometryTransform.

Definition at line 124 of file PhotometryTransform.h.

124  {
125  Eigen::VectorXd parameters(1);
126  parameters[0] = _value;
127  return parameters;
128  }

◆ getValue()

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

Definition at line 131 of file PhotometryTransform.h.

131 { return _value; }

◆ offsetParams()

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

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 121 of file PhotometryTransform.h.

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

◆ transform() [1/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); }
virtual double transform(double x, double y, double value) const =0
Return the transform of value at (x,y).

◆ transform() [2/2]

double lsst::jointcal::FluxTransformSpatiallyInvariant::transform ( double  x,
double  y,
double  value 
) const
inlineoverridevirtual

Return the transform of value at (x,y).

Implements lsst::jointcal::PhotometryTransform.

Definition at line 150 of file PhotometryTransform.h.

150 { return value * getValue(); }

◆ transformError() [1/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).

◆ transformError() [2/2]

double lsst::jointcal::FluxTransformSpatiallyInvariant::transformError ( double  x,
double  y,
double  value,
double  valueErr 
) const
inlineoverridevirtual

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

Implements lsst::jointcal::PhotometryTransform.

Definition at line 153 of file PhotometryTransform.h.

153  {
154  return getValue() * valueErr;
155  }

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