LSST Applications g180d380827+0f66a164bb,g2079a07aa2+86d27d4dc4,g2305ad1205+7d304bc7a0,g29320951ab+500695df56,g2bbee38e9b+0e5473021a,g337abbeb29+0e5473021a,g33d1c0ed96+0e5473021a,g3a166c0a6a+0e5473021a,g3ddfee87b4+e42ea45bea,g48712c4677+36a86eeaa5,g487adcacf7+2dd8f347ac,g50ff169b8f+96c6868917,g52b1c1532d+585e252eca,g591dd9f2cf+c70619cc9d,g5a732f18d5+53520f316c,g5ea96fc03c+341ea1ce94,g64a986408d+f7cd9c7162,g858d7b2824+f7cd9c7162,g8a8a8dda67+585e252eca,g99cad8db69+469ab8c039,g9ddcbc5298+9a081db1e4,ga1e77700b3+15fc3df1f7,gb0e22166c9+60f28cb32d,gba4ed39666+c2a2e4ac27,gbb8dafda3b+c92fc63c7e,gbd866b1f37+f7cd9c7162,gc120e1dc64+02c66aa596,gc28159a63d+0e5473021a,gc3e9b769f7+b0068a2d9f,gcf0d15dbbd+e42ea45bea,gdaeeff99f8+f9a426f77a,ge6526c86ff+84383d05b3,ge79ae78c31+0e5473021a,gee10cc3b42+585e252eca,gff1a9f87cc+f7cd9c7162,w.2024.17
LSST Data Management Base Package
Loading...
Searching...
No Matches
PhotometryTransform.h
Go to the documentation of this file.
1// -*- LSST-C++ -*-
2/*
3 * This file is part of jointcal.
4 *
5 * Developed for the LSST Data Management System.
6 * This product includes software developed by the LSST Project
7 * (https://www.lsst.org).
8 * See the COPYRIGHT file at the top-level directory of this distribution
9 * for details of code ownership.
10 *
11 * This program is free software: you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation, either version 3 of the License, or
14 * (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program. If not, see <https://www.gnu.org/licenses/>.
23 */
24
25#ifndef LSST_JOINTCAL_PHOTOMETRY_TRANSFORM_H
26#define LSST_JOINTCAL_PHOTOMETRY_TRANSFORM_H
27
28#include <iostream>
29#include <sstream>
30#include <memory>
31
32#include "Eigen/Core"
33#include "ndarray.h"
34
36#include "lsst/geom/Box.h"
37#include "lsst/geom/Point.h"
38#include "lsst/jointcal/Point.h"
39
40namespace lsst {
41namespace jointcal {
42
43class Point;
44
53public:
55 virtual double transform(double x, double y, double value) const = 0;
56
58 double transform(Point const &in, double value) const { return transform(in.x, in.y, value); }
59
61 virtual double transformError(double x, double y, double value, double valueErr) const = 0;
62
64 double transformError(Point const &in, double value, double valueErr) const {
65 return transformError(in.x, in.y, value, valueErr);
66 }
67
69 virtual void print(std::ostream &out) const = 0;
70
72 transform.print(s);
73 return s;
74 }
75
77 virtual std::size_t getNpar() const = 0;
78
87 virtual void offsetParams(Eigen::VectorXd const &delta) = 0;
88
91
100 virtual void computeParameterDerivatives(double x, double y, double value,
101 Eigen::Ref<Eigen::VectorXd> derivatives) const = 0;
102
104 virtual Eigen::VectorXd getParameters() const = 0;
105 virtual ~PhotometryTransform() = default;
106};
107
112public:
113 explicit PhotometryTransformSpatiallyInvariant(double value) : _value(value) {}
114
116 void print(std::ostream &out) const override {
117 out << "PhotometryTransformSpatiallyInvariant: " << std::setprecision(10) << _value;
118 }
119
121 std::size_t getNpar() const override { return 1; }
122
124 void offsetParams(Eigen::VectorXd const &delta) override { _value -= delta[0]; };
125
127 Eigen::VectorXd getParameters() const override {
128 Eigen::VectorXd parameters(1);
129 parameters[0] = _value;
130 return parameters;
131 }
132
133protected:
134 double getValue() const { return _value; }
135
136private:
138 double _value;
139};
140
148public:
151
153 double transform(double x, double y, double value) const override { return value * getValue(); }
154
156 double transformError(double x, double y, double value, double valueErr) const override {
157 return getValue() * valueErr;
158 }
159
162 return std::make_shared<FluxTransformSpatiallyInvariant>(getValue());
163 }
164
166 void computeParameterDerivatives(double x, double y, double value,
167 Eigen::Ref<Eigen::VectorXd> derivatives) const override {
168 // the derivative of a spatially constant transform w.r.t. that value is just the value.
169 derivatives[0] = value;
170 }
171};
172
180public:
183
185 double transform(double x, double y, double mag) const override { return mag + getValue(); }
186
188 double transformError(double x, double y, double value, double valueErr) const override {
189 return valueErr;
190 }
191
194 return std::make_shared<MagnitudeTransformSpatiallyInvariant>(getValue());
195 }
196
198 void computeParameterDerivatives(double x, double y, double value,
199 Eigen::Ref<Eigen::VectorXd> derivatives) const override {
200 // the derivative of a spatially constant transform w.r.t. that value is 1.
201 derivatives[0] = 1;
202 }
203};
204
223public:
231 PhotometryTransformChebyshev(size_t order, geom::Box2D const &bbox, bool identity);
232
242 PhotometryTransformChebyshev(ndarray::Array<double, 2, 2> const &coefficients, geom::Box2D const &bbox);
243
245 double transformError(double x, double y, double value, double valueErr) const override { return 0; }
246
248 void print(std::ostream &out) const override { out << "PhotometryTransformChebyshev: " << _coefficients; }
249
251 std::size_t getNpar() const override { return _nParameters; }
252
254 void offsetParams(Eigen::VectorXd const &delta) override;
255
257 ndarray::Array<double, 2, 2> getCoefficients() const { return ndarray::copy(_coefficients); }
258
260 Eigen::VectorXd getParameters() const override;
261
262 ndarray::Size getOrder() const { return _order; }
263
264 geom::Box2D getBBox() const { return _bbox; }
265
267 double mean(geom::Box2D const &bbox) const;
269 double mean() const;
270
271 // Compute the integral of this function over a bounding-box (default to our bbox).
272 double integrate(geom::Box2D const &bbox) const;
274 double integrate() const;
275
276protected:
280 double computeChebyshev(double x, double y) const;
281
286 void computeChebyshevDerivatives(double x, double y, Eigen::Ref<Eigen::VectorXd> derivatives) const;
287
288private:
289 geom::Box2D _bbox; // the domain of this function
290 geom::AffineTransform _toChebyshevRange; // maps points from the bbox to [-1,1]x[-1,1]
291
292 ndarray::Array<double, 2, 2> _coefficients; // shape=(order+1, order+1)
293 ndarray::Size _order;
294 ndarray::Size _nParameters;
295
297 double oneIntegral(double x, double y) const;
298};
299
304public:
307
310
312 double transform(double x, double y, double value) const override {
313 return value * computeChebyshev(x, y);
314 }
315
317 void computeParameterDerivatives(double x, double y, double value,
318 Eigen::Ref<Eigen::VectorXd> derivatives) const override {
319 computeChebyshevDerivatives(x, y, derivatives);
320 derivatives *= value;
321 }
322
325 return std::make_shared<FluxTransformChebyshev>(getCoefficients(), getBBox());
326 }
327};
328
333public:
336
339
341 double transform(double x, double y, double value) const override {
342 return value + computeChebyshev(x, y);
343 }
344
346 void computeParameterDerivatives(double x, double y, double value,
347 Eigen::Ref<Eigen::VectorXd> derivatives) const override {
348 // The derivatives here are independent of value
349 computeChebyshevDerivatives(x, y, derivatives);
350 }
351
354 return std::make_shared<FluxTransformChebyshev>(getCoefficients(), getBBox());
355 }
356};
357
358} // namespace jointcal
359} // namespace lsst
360
361#endif // LSST_JOINTCAL_PHOTOMETRY_TRANSFORM_H
AmpInfoBoxKey bbox
Definition Amplifier.cc:117
ndarray::Array< double const, 2, 2 > coefficients
int y
Definition SpanSet.cc:48
An affine coordinate transformation consisting of a linear transformation and an offset.
A floating-point coordinate rectangle geometry.
Definition Box.h:413
nth-order 2d Chebyshev photometry transform, times the input flux.
FluxTransformChebyshev(ndarray::Array< double, 2, 2 > const &coefficients, geom::Box2D const &bbox)
double transform(double x, double y, double value) const override
Return the transform of value at (x,y).
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.
std::shared_ptr< PhotometryTransform > clone() const override
return a copy (allocated by new) of the transformation.
FluxTransformChebyshev(size_t order, geom::Box2D const &bbox)
Photometric offset independent of position, defined as (fluxMag0)^-1.
double transform(double x, double y, double value) const override
Return the transform of value at (x,y).
double transformError(double x, double y, double value, double valueErr) const override
Return the transformed valueErr at Point(x,y).
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.
std::shared_ptr< PhotometryTransform > clone() const override
return a copy (allocated by new) of the transformation.
nth-order 2d Chebyshev photometry transform, plus the input flux.
std::shared_ptr< PhotometryTransform > clone() const override
return a copy (allocated by new) of the transformation.
double transform(double x, double y, double value) const override
Return the transform of value at (x,y).
MagnitudeTransformChebyshev(size_t order, geom::Box2D const &bbox)
MagnitudeTransformChebyshev(ndarray::Array< double, 2, 2 > const &coefficients, geom::Box2D const &bbox)
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.
Photometric offset independent of position, defined as -2.5 * log(flux / fluxMag0).
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.
double transformError(double x, double y, double value, double valueErr) const override
Return the transformed valueErr at Point(x,y).
std::shared_ptr< PhotometryTransform > clone() const override
return a copy (allocated by new) of the transformation.
double transform(double x, double y, double mag) const override
Return the transform of value at (x,y).
nth-order 2d Chebyshev photometry transform.
void offsetParams(Eigen::VectorXd const &delta) override
Offset the parameters by some (negative) amount during fitting.
std::size_t getNpar() const override
Return the number of parameters (used to compute chisq)
void print(std::ostream &out) const override
Print the transform coefficients to stream.
Eigen::VectorXd getParameters() const override
Get a copy of the parameters of this model, in the same order as offsetParams.
PhotometryTransformChebyshev(size_t order, geom::Box2D const &bbox, bool identity)
Create a Chebyshev transform with terms up to order in (x*y).
void computeChebyshevDerivatives(double x, double y, Eigen::Ref< Eigen::VectorXd > derivatives) const
Set the derivatives of this polynomial at x,y.
ndarray::Array< double, 2, 2 > getCoefficients() const
Get a copy of the coefficients of the polynomials, as a 2d array (NOTE: layout is [y][x])
double transformError(double x, double y, double value, double valueErr) const override
Return the transformed valueErr at Point(x,y).
double computeChebyshev(double x, double y) const
Return the value of this polynomial at x,y.
A photometric transform, defined in terms of the input flux or magnitude.
virtual double transformError(double x, double y, double value, double valueErr) const =0
Return the transformed valueErr at Point(x,y).
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.
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 Eigen::VectorXd getParameters() const =0
Get a copy of the parameters of this model, in the same order as offsetParams.
virtual std::size_t getNpar() const =0
Return the number of parameters (used to compute chisq)
virtual std::shared_ptr< PhotometryTransform > clone() const =0
return a copy (allocated by new) of the transformation.
friend std::ostream & operator<<(std::ostream &s, PhotometryTransform const &transform)
virtual ~PhotometryTransform()=default
double transformError(Point const &in, double value, double valueErr) const
Return the transformed valueErr at Point(x,y).
virtual void offsetParams(Eigen::VectorXd const &delta)=0
Offset the parameters by some (negative) amount during fitting.
virtual void print(std::ostream &out) const =0
Print the transform coefficients to stream.
Photometry offset independent of position.
std::size_t getNpar() const override
Return the number of parameters (used to compute chisq)
void print(std::ostream &out) const override
Print the transform coefficients to stream.
Eigen::VectorXd getParameters() const override
Get a copy of the parameters of this model, in the same order as offsetParams.
void offsetParams(Eigen::VectorXd const &delta) override
Offset the parameters by some (negative) amount during fitting.
A point in a plane.
Definition Point.h:37
double x
coordinate
Definition Point.h:42
T setprecision(T... args)
table::Key< int > order