LSSTApplications  18.1.0
LSSTDataManagementBasePackage
ConstrainedPhotometryModel.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_CONSTRAINED_PHOTOMETRY_MODEL_H
26 #define LSST_JOINTCAL_CONSTRAINED_PHOTOMETRY_MODEL_H
27 
28 #include <map>
29 
30 #include "lsst/jointcal/CcdImage.h"
33 
34 namespace lsst {
35 namespace jointcal {
36 
49 public:
60  explicit ConstrainedPhotometryModel(CcdImageList const &ccdImageList,
61  afw::geom::Box2D const &focalPlaneBBox, LOG_LOGGER log,
62  int visitOrder = 7, double errorPedestal_ = 0)
63  : PhotometryModel(log, errorPedestal_), _fittingChips(false), _fittingVisits(false) {
64  _chipVisitMap.reserve(ccdImageList.size());
65  }
66 
72 
74  Eigen::Index assignIndices(std::string const &whatToFit, Eigen::Index firstIndex) override;
75 
77  void offsetParams(Eigen::VectorXd const &delta) override;
78 
80  void freezeErrorTransform() override;
81 
83  void getMappingIndices(CcdImage const &ccdImage, IndexVector &indices) const override;
84 
86  std::size_t getTotalParameters() const override;
87 
89  void computeParameterDerivatives(MeasuredStar const &measuredStar, CcdImage const &ccdImage,
90  Eigen::VectorXd &derivatives) const override;
91 
93  void dump(std::ostream &stream = std::cout) const override;
94 
95 protected:
96  PhotometryMappingBase *findMapping(CcdImage const &ccdImage) const override;
97 
98  /* The per-ccdImage transforms, each of which is a composition of a chip and visit transform.
99  * Not all pairs of _visitMap[visit] and _chipMap[chip] are guaranteed to have an entry in
100  * _chipVisitMap (for example, one ccd in one visit might fail to produce a catalog).
101  */
103  MapType _chipVisitMap;
104 
105  // The per-visit transforms that go into _chipVisitMap.
107  VisitMapType _visitMap;
108  // The per-chip transforms that go into _chipVisitMap.
110  ChipMapType _chipMap;
111 
115  template <class ChipTransform, class VisitTransform, class ChipVisitMapping>
116  void initialize(CcdImageList const &ccdImageList, afw::geom::Box2D const &focalPlaneBBox, int visitOrder);
117 
120 
122  struct PrepPhotoCalib {
123  double chipConstant;
126  double visitMean;
127  };
128 
130  PrepPhotoCalib prepPhotoCalib(CcdImage const &ccdImage) const;
131 
132 private:
133  // Which components of the model are we fitting currently?
134  bool _fittingChips;
135  bool _fittingVisits;
136 };
137 
139 public:
140  explicit ConstrainedFluxModel(CcdImageList const &ccdImageList, afw::geom::Box2D const &focalPlaneBBox,
141  int visitOrder = 7, double errorPedestal_ = 0)
142  : ConstrainedPhotometryModel(ccdImageList, focalPlaneBBox,
143  LOG_GET("jointcal.ConstrainedFluxModel"), visitOrder,
144  errorPedestal_) {
145  initialize<FluxTransformSpatiallyInvariant, FluxTransformChebyshev, ChipVisitFluxMapping>(
146  ccdImageList, focalPlaneBBox, visitOrder);
147  }
148 
150  void offsetFittedStar(FittedStar &fittedStar, double delta) const override {
151  fittedStar.getFlux() -= delta;
152  }
153 
155  double computeResidual(CcdImage const &ccdImage, MeasuredStar const &measuredStar) const override;
156 
158  double computeRefResidual(FittedStar const &fittedStar, RefStar const &refStar) const override {
159  return fittedStar.getFlux() - refStar.getFlux();
160  };
161 
163  double getRefError(RefStar const &refStar) const override { return refStar.getFluxErr(); }
164 
166  double transform(CcdImage const &ccdImage, MeasuredStar const &measuredStar) const override;
167 
169  double transformError(CcdImage const &ccdImage, MeasuredStar const &measuredStar) const override;
170 
172  std::shared_ptr<afw::image::PhotoCalib> toPhotoCalib(CcdImage const &ccdImage) const override;
173 
174 protected:
177  return photoCalib->getCalibrationMean();
178  }
179 };
180 
182 public:
183  explicit ConstrainedMagnitudeModel(CcdImageList const &ccdImageList,
184  afw::geom::Box2D const &focalPlaneBBox, int visitOrder = 7,
185  double errorPedestal_ = 0)
186  : ConstrainedPhotometryModel(ccdImageList, focalPlaneBBox,
187  LOG_GET("jointcal.ConstrainedMagnitudeModel"), visitOrder,
188  errorPedestal_) {
190  ChipVisitMagnitudeMapping>(ccdImageList, focalPlaneBBox, visitOrder);
191  }
192 
194  void offsetFittedStar(FittedStar &fittedStar, double delta) const override {
195  fittedStar.getMag() -= delta;
196  }
197 
199  double computeResidual(CcdImage const &ccdImage, MeasuredStar const &measuredStar) const override;
200 
202  double computeRefResidual(FittedStar const &fittedStar, RefStar const &refStar) const override {
203  return fittedStar.getMag() - refStar.getMag();
204  };
205 
207  double getRefError(RefStar const &refStar) const override { return refStar.getMagErr(); }
208 
210  double transform(CcdImage const &ccdImage, MeasuredStar const &measuredStar) const override;
211 
213  double transformError(CcdImage const &ccdImage, MeasuredStar const &measuredStar) const override;
214 
216  std::shared_ptr<afw::image::PhotoCalib> toPhotoCalib(CcdImage const &ccdImage) const override;
217 
218 protected:
221  return utils::nanojanskyToABMagnitude(photoCalib->getCalibrationMean());
222  }
223 };
224 
225 } // namespace jointcal
226 } // namespace lsst
227 
228 #endif // LSST_JOINTCAL_CONSTRAINED_PHOTOMETRY_MODEL_H
ConstrainedPhotometryModel(CcdImageList const &ccdImageList, afw::geom::Box2D const &focalPlaneBBox, LOG_LOGGER log, int visitOrder=7, double errorPedestal_=0)
Construct a constrained photometry model.
Objects used as position anchors, typically USNO stars.
Definition: RefStar.h:39
virtual double transformError(CcdImage const &ccdImage, MeasuredStar const &measuredStar) const =0
Return the on-sky transformed flux uncertainty for measuredStar on ccdImage.
double getRefError(RefStar const &refStar) const override
Return the refStar error appropriate for this model (e.g. fluxErr or magErr).
#define LOG_LOGGER
Definition: Log.h:688
A floating-point coordinate rectangle geometry.
Definition: Box.h:305
virtual double computeResidual(CcdImage const &ccdImage, MeasuredStar const &measuredStar) const =0
Compute the residual between the model applied to a star and its associated fittedStar.
Relates transform(s) to their position in the fitting matrix and allows interaction with the transfor...
double computeRefResidual(FittedStar const &fittedStar, RefStar const &refStar) const override
Return the fittedStar - refStar residual appropriate for this model (e.g. flux - flux or mag - mag)...
virtual std::shared_ptr< afw::image::PhotoCalib > toPhotoCalib(CcdImage const &ccdImage) const =0
Return the mapping of ccdImage represented as a PhotoCalib.
double initialChipCalibration(std::shared_ptr< afw::image::PhotoCalib const > photoCalib) override
Return the initial calibration to use from this photoCalib.
std::map< VisitIdType, std::shared_ptr< PhotometryMapping > > VisitMapType
void offsetFittedStar(FittedStar &fittedStar, double delta) const override
Offset the appropriate flux or magnitude (by -delta).
double getFluxErr() const
Definition: BaseStar.h:100
std::size_t getTotalParameters() const override
Return the total number of parameters in this model.
STL class.
STL class.
nth-order 2d Chebyshev photometry transform, plus the input flux.
double getRefError(RefStar const &refStar) const override
Return the refStar error appropriate for this model (e.g. fluxErr or magErr).
ConstrainedMagnitudeModel(CcdImageList const &ccdImageList, afw::geom::Box2D const &focalPlaneBBox, int visitOrder=7, double errorPedestal_=0)
A base class for image defects.
PhotometryMappingBase * findMapping(CcdImage const &ccdImage) const override
Return a pointer to the mapping associated with this ccdImage.
double getMag() const
Definition: BaseStar.h:103
objects measured on actual images.
Definition: MeasuredStar.h:46
double computeRefResidual(FittedStar const &fittedStar, RefStar const &refStar) const override
Return the fittedStar - refStar residual appropriate for this model (e.g. flux - flux or mag - mag)...
void computeParameterDerivatives(MeasuredStar const &measuredStar, CcdImage const &ccdImage, Eigen::VectorXd &derivatives) const override
Compute the parametric derivatives of this model.
std::map< CcdIdType, std::shared_ptr< PhotometryMapping > > ChipMapType
double getFlux() const
Definition: BaseStar.h:96
std::unordered_map< CcdImageKey, std::unique_ptr< ChipVisitPhotometryMapping > > MapType
ConstrainedFluxModel(CcdImageList const &ccdImageList, afw::geom::Box2D const &focalPlaneBBox, int visitOrder=7, double errorPedestal_=0)
T size(T... args)
void dump(std::ostream &stream=std::cout) const override
Dump the contents of the transforms, for debugging.
double nanojanskyToABMagnitude(double flux)
Convert a flux in nanojansky to AB magnitude.
Definition: Magnitude.cc:30
double getMagErr() const
Definition: BaseStar.h:106
STL class.
void offsetParams(Eigen::VectorXd const &delta) override
Offset the parameters by the provided amounts (by -delta).
std::shared_ptr< afw::geom::TransformPoint2ToPoint2 > pixToFocal
Photometry model with constraints, .
PrepPhotoCalib prepPhotoCalib(CcdImage const &ccdImage) const
Helper for preparing toPhotoCalib()
Photometric offset independent of position, defined as -2.5 * log(flux / fluxMag0).
virtual double initialChipCalibration(std::shared_ptr< afw::image::PhotoCalib const > photoCalib)=0
Return the initial calibration to use from this photoCalib.
Handler of an actual image from a single CCD.
Definition: CcdImage.h:64
#define LOG_GET(logger)
Returns a Log object associated with logger.
Definition: Log.h:75
ConstrainedPhotometryModel & operator=(ConstrainedPhotometryModel const &)=delete
STL class.
The objects which have been measured several times.
Definition: FittedStar.h:61
double initialChipCalibration(std::shared_ptr< afw::image::PhotoCalib const > photoCalib) override
Return the initial calibration to use from this photoCalib.
void freezeErrorTransform() override
Once this routine has been called, the error transform is not modified by offsetParams().
void initialize(CcdImageList const &ccdImageList, afw::geom::Box2D const &focalPlaneBBox, int visitOrder)
Initialize the chip, visit, and chipVisit mappings by creating appropriate transforms and mappings...
virtual double transform(CcdImage const &ccdImage, MeasuredStar const &measuredStar) const =0
Return the on-sky transformed flux for measuredStar on ccdImage.
void getMappingIndices(CcdImage const &ccdImage, IndexVector &indices) const override
Get how this set of parameters (of length Npar()) map into the "grand" fit.
Transform LSST spatial data, such as lsst::geom::Point2D and lsst::geom::SpherePoint, using an AST mapping.
Definition: Transform.h:67
Eigen::Index assignIndices(std::string const &whatToFit, Eigen::Index firstIndex) override
Assign indices in the full matrix to the parameters being fit in the mappings, starting at firstIndex...
void offsetFittedStar(FittedStar &fittedStar, double delta) const override
Offset the appropriate flux or magnitude (by -delta).
T reserve(T... args)