LSST Applications  21.0.0-172-gfb10e10a+18fedfabac,22.0.0+297cba6710,22.0.0+80564b0ff1,22.0.0+8d77f4f51a,22.0.0+a28f4c53b1,22.0.0+dcf3732eb2,22.0.1-1-g7d6de66+2a20fdde0d,22.0.1-1-g8e32f31+297cba6710,22.0.1-1-geca5380+7fa3b7d9b6,22.0.1-12-g44dc1dc+2a20fdde0d,22.0.1-15-g6a90155+515f58c32b,22.0.1-16-g9282f48+790f5f2caa,22.0.1-2-g92698f7+dcf3732eb2,22.0.1-2-ga9b0f51+7fa3b7d9b6,22.0.1-2-gd1925c9+bf4f0e694f,22.0.1-24-g1ad7a390+a9625a72a8,22.0.1-25-g5bf6245+3ad8ecd50b,22.0.1-25-gb120d7b+8b5510f75f,22.0.1-27-g97737f7+2a20fdde0d,22.0.1-32-gf62ce7b1+aa4237961e,22.0.1-4-g0b3f228+2a20fdde0d,22.0.1-4-g243d05b+871c1b8305,22.0.1-4-g3a563be+32dcf1063f,22.0.1-4-g44f2e3d+9e4ab0f4fa,22.0.1-42-gca6935d93+ba5e5ca3eb,22.0.1-5-g15c806e+85460ae5f3,22.0.1-5-g58711c4+611d128589,22.0.1-5-g75bb458+99c117b92f,22.0.1-6-g1c63a23+7fa3b7d9b6,22.0.1-6-g50866e6+84ff5a128b,22.0.1-6-g8d3140d+720564cf76,22.0.1-6-gd805d02+cc5644f571,22.0.1-8-ge5750ce+85460ae5f3,master-g6e05de7fdc+babf819c66,master-g99da0e417a+8d77f4f51a,w.2021.48
LSST Data Management Base Package
SdssShape.h
Go to the documentation of this file.
1 // -*- lsst-c++ -*-
2 /*
3  * LSST Data Management System
4  * Copyright 2008-2016 AURA/LSST.
5  *
6  * This product includes software developed by the
7  * LSST Project (http://www.lsst.org/).
8  *
9  * This program is free software: you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation, either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the LSST License Statement and
20  * the GNU General Public License along with this program. If not,
21  * see <https://www.lsstcorp.org/LegalNotices/>.
22  */
23 
24 #ifndef LSST_MEAS_BASE_SdssShape_h_INCLUDED
25 #define LSST_MEAS_BASE_SdssShape_h_INCLUDED
26 
27 #include <bitset>
28 
29 #include "lsst/pex/config.h"
30 #include "lsst/afw/geom/SkyWcs.h"
40 
41 namespace lsst {
42 namespace meas {
43 namespace base {
44 
45 class SdssShapeResult;
46 
53 public:
54  LSST_CONTROL_FIELD(background, double, "Additional value to add to background");
55  LSST_CONTROL_FIELD(maxIter, int, "Maximum number of iterations");
56  LSST_CONTROL_FIELD(maxShift, double, "Maximum centroid shift, limited to 2-10");
57  LSST_CONTROL_FIELD(tol1, float, "Convergence tolerance for e1,e2");
58  LSST_CONTROL_FIELD(tol2, float, "Convergence tolerance for FWHM");
59  LSST_CONTROL_FIELD(doMeasurePsf, bool, "Whether to also compute the shape of the PSF model");
60 
63  : background(0.0), maxIter(100), maxShift(), tol1(1E-5), tol2(1E-4), doMeasurePsf(true) {}
64 };
65 
73 class SdssShapeResultKey : public afw::table::FunctorKey<SdssShapeResult> {
74 public:
87  bool doMeasurePsf);
88 
91 
102 
104  virtual SdssShapeResult get(afw::table::BaseRecord const& record) const;
105 
107  virtual void set(afw::table::BaseRecord& record, SdssShapeResult const& value) const;
108 
111 
113  virtual void setPsfShape(afw::table::BaseRecord& record,
114  afw::geom::ellipses::Quadrupole const& value) const;
115 
117  bool operator==(SdssShapeResultKey const& other) const;
119  bool operator!=(SdssShapeResultKey const& other) const { return !(*this == other); }
121 
123  bool isValid() const;
124 
125  FlagHandler const& getFlagHandler() const { return _flagHandler; }
126 
127 private:
128  bool _includePsf;
129  ShapeResultKey _shapeResult;
130  CentroidResultKey _centroidResult;
131  FluxResultKey _instFluxResult;
132  afw::table::QuadrupoleKey _psfShapeResult;
133  afw::table::Key<ErrElement> _instFlux_xx_Cov;
134  afw::table::Key<ErrElement> _instFlux_yy_Cov;
135  afw::table::Key<ErrElement> _instFlux_xy_Cov;
136  FlagHandler _flagHandler;
137 };
138 
151 public:
152  // Structures and routines to manage flaghandler
153  static FlagDefinitionList const& getFlagDefinitions();
154  static unsigned int const N_FLAGS = 6;
155  static FlagDefinition const FAILURE;
158  static FlagDefinition const SHIFT;
159  static FlagDefinition const MAXITER;
161 
165 
166  // NOTE: In order to accommodate the optional setting of additional fields when running with
167  // doMeasurePsf = true (do set extra fields) or false (do NOT set extra fields), all of
168  // the code in SdssShape assumes that PSF_SHAPE_BAD is the last entry in the enum list.
169  // If new flags are added, be sure to add them above the PSF_SHAPE_BAD entry.
170 
172 
183  template <typename ImageT>
184  static Result computeAdaptiveMoments(ImageT const& image, geom::Point2D const& position,
185  bool negative = false, Control const& ctrl = Control());
186 
196  template <typename ImageT>
197  static FluxResult computeFixedMomentsFlux(ImageT const& image,
198  afw::geom::ellipses::Quadrupole const& shape,
199  geom::Point2D const& position);
200 
201  virtual void measure(afw::table::SourceRecord& measRecord,
202  afw::image::Exposure<float> const& exposure) const;
203 
204  virtual void fail(afw::table::SourceRecord& measRecord, MeasurementError* error = nullptr) const;
205 
206 private:
207  Control _ctrl;
208  ResultKey _resultKey;
209  SafeCentroidExtractor _centroidExtractor;
210 };
211 
224 class SdssShapeResult : public ShapeResult, public CentroidResult, public FluxResult {
225 public:
229 
231 
233  // TODO is this workaround still needed?
234  bool getFlag(unsigned int index) const { return flags[index]; }
235 
236  bool getFlag(std::string const& name) const {
238  }
239 
240  SdssShapeResult();
241 };
242 
251 public:
253 
255 
256  /*
257  * @brief Perform transformation from inputCatalog to outputCatalog.
258  *
259  * @param[in] inputCatalog Source of data to be transformed
260  * @param[in,out] outputCatalog Container for transformed results
261  * @param[in] wcs World coordinate system under which transformation will take place
262  * @param[in] photoCalib Photometric calibration under which transformation will take place
263  * @throws LengthError Catalog sizes do not match
264  */
265  virtual void operator()(afw::table::SourceCatalog const& inputCatalog,
266  afw::table::BaseCatalog& outputCatalog, afw::geom::SkyWcs const& wcs,
267  afw::image::PhotoCalib const& photoCalib) const;
268 
269 private:
270  FluxTransform _instFluxTransform;
271  CentroidTransform _centroidTransform;
272  ShapeResultKey _outShapeKey;
273  afw::table::QuadrupoleKey _outPsfShapeKey;
274  bool _transformPsf;
275 };
276 
277 } // namespace base
278 } // namespace meas
279 } // namespace lsst
280 
281 #endif // !LSST_MEAS_BASE_SdssShape_h_INCLUDED
table::Key< std::string > name
Definition: Amplifier.cc:116
Implementation of the Photometric Calibration class.
SchemaMapper * mapper
Definition: SchemaMapper.cc:71
table::Key< table::Array< std::uint8_t > > wcs
Definition: SkyWcs.cc:66
table::Schema schema
Definition: python.h:134
A 2-dimensional celestial WCS that transform pixels to ICRS RA/Dec, using the LSST standard for pixel...
Definition: SkyWcs.h:117
An ellipse core with quadrupole moments as parameters.
Definition: Quadrupole.h:47
The photometric calibration of an exposure.
Definition: PhotoCalib.h:114
Base class for all records.
Definition: BaseRecord.h:31
Convenience base class that combines the OutputFunctorKey and InputFunctorKey.
Definition: FunctorKey.h:74
A FunctorKey used to get or set a geom::ellipses::Quadrupole from a tuple of constituent Keys.
Definition: aggregates.h:282
Defines the fields and offsets for a table.
Definition: Schema.h:51
A mapping between the keys of two Schemas, used to copy data between them.
Definition: SchemaMapper.h:21
Record class that contains measurements made on a single exposure.
Definition: Source.h:78
A proxy type for name lookups in a Schema.
Definition: Schema.h:367
Abstract base class for all C++ measurement transformations.
Definition: Transform.h:86
A FunctorKey for CentroidResult.
Base for centroid measurement transformations.
vector-type utility class to build a collection of FlagDefinitions
Definition: FlagHandler.h:60
FlagDefinition getDefinition(std::size_t index) const
get a reference to the FlagDefinition with specified index.
Definition: FlagHandler.h:83
Utility class for handling flag fields that indicate the failure modes of an algorithm.
Definition: FlagHandler.h:148
A FunctorKey for FluxResult.
Definition: FluxUtilities.h:59
Base for instFlux measurement transformations.
Exception to be thrown when a measurement algorithm experiences a known failure mode.
Definition: exceptions.h:48
Utility class for measurement algorithms that extracts a position from the Centroid slot and handles ...
Measure the image moments of source using adaptive Gaussian weights.
Definition: SdssShape.h:150
static FlagDefinition const SHIFT
Definition: SdssShape.h:158
static FlagDefinitionList const & getFlagDefinitions()
Definition: SdssShape.cc:58
virtual void measure(afw::table::SourceRecord &measRecord, afw::image::Exposure< float > const &exposure) const
Called to measure a single child source in an image.
Definition: SdssShape.cc:868
static Result computeAdaptiveMoments(ImageT const &image, geom::Point2D const &position, bool negative=false, Control const &ctrl=Control())
Compute the adaptive Gaussian-weighted moments of an image.
static FlagDefinition const FAILURE
Definition: SdssShape.h:155
static unsigned int const N_FLAGS
Definition: SdssShape.h:154
static FluxResult computeFixedMomentsFlux(ImageT const &image, afw::geom::ellipses::Quadrupole const &shape, geom::Point2D const &position)
Compute the instFlux within a fixed Gaussian aperture.
Definition: SdssShape.cc:819
static FlagDefinition const MAXITER
Definition: SdssShape.h:159
static FlagDefinition const UNWEIGHTED
Definition: SdssShape.h:157
static FlagDefinition const PSF_SHAPE_BAD
Definition: SdssShape.h:160
static FlagDefinition const UNWEIGHTED_BAD
Definition: SdssShape.h:156
SdssShapeAlgorithm(Control const &ctrl, std::string const &name, afw::table::Schema &schema)
Definition: SdssShape.cc:744
virtual void fail(afw::table::SourceRecord &measRecord, MeasurementError *error=nullptr) const
Handle an exception thrown by the current algorithm by setting flags in the given record.
Definition: SdssShape.cc:903
A C++ control class to handle SdssShapeAlgorithm's configuration.
Definition: SdssShape.h:52
double maxShift
"Maximum centroid shift, limited to 2-10" ;
Definition: SdssShape.h:56
int maxIter
"Maximum number of iterations" ;
Definition: SdssShape.h:55
float tol2
"Convergence tolerance for FWHM" ;
Definition: SdssShape.h:58
bool doMeasurePsf
"Whether to also compute the shape of the PSF model" ;
Definition: SdssShape.h:59
float tol1
"Convergence tolerance for e1,e2" ;
Definition: SdssShape.h:57
double background
"Additional value to add to background" ;
Definition: SdssShape.h:54
Result object SdssShapeAlgorithm.
Definition: SdssShape.h:224
ErrElement instFlux_yy_Cov
instFlux, yy term in the uncertainty covariance matrix
Definition: SdssShape.h:227
SdssShapeResult()
Constructor; initializes everything to NaN.
Definition: SdssShape.cc:621
bool getFlag(unsigned int index) const
Flag getter for Swig, which doesn't understand std::bitset.
Definition: SdssShape.h:234
ErrElement instFlux_xy_Cov
instFlux, xy term in the uncertainty covariance matrix
Definition: SdssShape.h:228
bool getFlag(std::string const &name) const
Definition: SdssShape.h:236
std::bitset< SdssShapeAlgorithm::N_FLAGS > flags
Status flags (see SdssShapeAlgorithm).
Definition: SdssShape.h:230
ErrElement instFlux_xx_Cov
instFlux, xx term in the uncertainty covariance matrix
Definition: SdssShape.h:226
A FunctorKey that maps SdssShapeResult to afw::table Records.
Definition: SdssShape.h:73
FlagHandler const & getFlagHandler() const
Definition: SdssShape.h:125
SdssShapeResultKey()
Default constructor; instance will not be usuable unless subsequently assigned to.
Definition: SdssShape.h:90
bool operator!=(SdssShapeResultKey const &other) const
Definition: SdssShape.h:119
virtual SdssShapeResult get(afw::table::BaseRecord const &record) const
Get an SdssShapeResult from the given record.
Definition: SdssShape.cc:692
static SdssShapeResultKey addFields(afw::table::Schema &schema, std::string const &name, bool doMeasurePsf)
Add the appropriate fields to a Schema, and return a SdssShapeResultKey that manages them.
Definition: SdssShape.cc:626
virtual afw::geom::ellipses::Quadrupole getPsfShape(afw::table::BaseRecord const &record) const
Get a Quadrupole for the Psf from the given record.
Definition: SdssShape.cc:707
bool isValid() const
Return True if the key is valid.
Definition: SdssShape.cc:737
bool operator==(SdssShapeResultKey const &other) const
Compare the FunctorKey for equality with another, using the underlying Keys.
Definition: SdssShape.cc:729
virtual void set(afw::table::BaseRecord &record, SdssShapeResult const &value) const
Set an SdssShapeResult in the given record.
Definition: SdssShape.cc:711
virtual void setPsfShape(afw::table::BaseRecord &record, afw::geom::ellipses::Quadrupole const &value) const
Set a Quadrupole for the Psf at the position of the given record.
Definition: SdssShape.cc:724
Transformation for SdssShape measurements.
Definition: SdssShape.h:250
virtual void operator()(afw::table::SourceCatalog const &inputCatalog, afw::table::BaseCatalog &outputCatalog, afw::geom::SkyWcs const &wcs, afw::image::PhotoCalib const &photoCalib) const
Definition: SdssShape.cc:947
SdssShapeTransform(Control const &ctrl, std::string const &name, afw::table::SchemaMapper &mapper)
Definition: SdssShape.cc:921
A FunctorKey for ShapeResult.
An abstract base classes for which the same implementation can be used for both SingleFrameAlgorithm ...
Definition: Algorithm.h:170
#define LSST_CONTROL_FIELD(NAME, TYPE, DOC)
A preprocessor macro used to define fields in C++ "control object" structs.
Definition: config.h:43
Backwards-compatibility support for depersisting the old Calib (FluxMag0/FluxMag0Err) objects.
float ErrElement
Definition: constants.h:55
A base class for image defects.
A reusable struct for centroid measurements.
Simple class used to define and document flags The name and doc constitute the identity of the FlagDe...
Definition: FlagHandler.h:40
A reusable result struct for instFlux measurements.
Definition: FluxUtilities.h:41
A reusable struct for moments-based shape measurements.
Key< int > photoCalib
Definition: Exposure.cc:67