LSST Applications g06d8191974+de063e15a7,g180d380827+d0b6459378,g2079a07aa2+86d27d4dc4,g2305ad1205+f1ae3263cc,g29320951ab+5752d78b6e,g2bbee38e9b+85cf0a37e7,g337abbeb29+85cf0a37e7,g33d1c0ed96+85cf0a37e7,g3a166c0a6a+85cf0a37e7,g3ddfee87b4+b5254b9343,g48712c4677+9ea88d309d,g487adcacf7+05f7dba17f,g50ff169b8f+96c6868917,g52b1c1532d+585e252eca,g591dd9f2cf+48904e3942,g64a986408d+de063e15a7,g858d7b2824+de063e15a7,g864b0138d7+33ab2bc355,g8a8a8dda67+585e252eca,g99cad8db69+4508353287,g9c22b2923f+53520f316c,g9ddcbc5298+9a081db1e4,ga1e77700b3+15fc3df1f7,gb0e22166c9+60f28cb32d,gba4ed39666+c2a2e4ac27,gbb8dafda3b+ccb7f83a87,gc120e1dc64+6caf640b9b,gc28159a63d+85cf0a37e7,gc3e9b769f7+548c5e05a3,gcf0d15dbbd+b5254b9343,gdaeeff99f8+f9a426f77a,ge6526c86ff+515b6c9330,ge79ae78c31+85cf0a37e7,gee10cc3b42+585e252eca,gff1a9f87cc+de063e15a7,w.2024.17
LSST Data Management Base Package
Loading...
Searching...
No Matches
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"
40
41namespace lsst {
42namespace meas {
43namespace base {
44
45class SdssShapeResult;
46
53public:
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
73class SdssShapeResultKey : public afw::table::FunctorKey<SdssShapeResult> {
74public:
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
118 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
127private:
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
151public:
152 // Structures and routines to manage flaghandler
154 static unsigned int const N_FLAGS = 6;
158 static FlagDefinition const SHIFT;
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
171 SdssShapeAlgorithm(Control const& ctrl, std::string const& name, afw::table::Schema& schema);
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,
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
206private:
207 Control _ctrl;
208 ResultKey _resultKey;
209 SafeCentroidExtractor _centroidExtractor;
210};
211
224class SdssShapeResult : public ShapeResult, public CentroidResult, public FluxResult {
225public:
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
241};
242
251public:
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
269private:
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
Implementation of the Photometric Calibration class.
SchemaMapper * mapper
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
A class to contain the data, WCS, and other information needed to describe an image of the sky.
Definition Exposure.h:72
The photometric calibration of an exposure.
Definition PhotoCalib.h:114
Tag types used to declare specialized field types.
Definition misc.h:31
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:369
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.
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.
Utility class for handling flag fields that indicate the failure modes of an algorithm.
A FunctorKey for FluxResult.
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:881
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:834
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
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:916
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
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:636
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
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:707
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:641
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:722
bool isValid() const
Return True if the key is valid.
Definition SdssShape.cc:752
bool operator==(SdssShapeResultKey const &other) const
Compare the FunctorKey for equality with another, using the underlying Keys.
Definition SdssShape.cc:744
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:739
FlagHandler const & getFlagHandler() const
Definition SdssShape.h:125
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:960
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
daf::base::PropertySet * set
Definition fits.cc:931
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.
A reusable struct for moments-based shape measurements.