LSST Applications g0265f82a02+0e5473021a,g02d81e74bb+0dd8ce4237,g1470d8bcf6+3ea6592b6f,g2079a07aa2+86d27d4dc4,g2305ad1205+5ca4c0b359,g295015adf3+d10818ec9d,g2a9a014e59+6f9be1b9cd,g2bbee38e9b+0e5473021a,g337abbeb29+0e5473021a,g3ddfee87b4+703ba97ebf,g487adcacf7+4fa16da234,g50ff169b8f+96c6868917,g52b1c1532d+585e252eca,g591dd9f2cf+ffa42b374e,g5a732f18d5+53520f316c,g64a986408d+0dd8ce4237,g858d7b2824+0dd8ce4237,g8a8a8dda67+585e252eca,g99cad8db69+d39438377f,g9ddcbc5298+9a081db1e4,ga1e77700b3+15fc3df1f7,ga8c6da7877+f1d96605c8,gb0e22166c9+60f28cb32d,gb6a65358fc+0e5473021a,gba4ed39666+c2a2e4ac27,gbb8dafda3b+e5339d463f,gc120e1dc64+da31e9920e,gc28159a63d+0e5473021a,gcf0d15dbbd+703ba97ebf,gdaeeff99f8+f9a426f77a,ge6526c86ff+889fc9d533,ge79ae78c31+0e5473021a,gee10cc3b42+585e252eca,gf18bd8381d+7268b93478,gff1a9f87cc+0dd8ce4237,w.2024.16
LSST Data Management Base Package
Loading...
Searching...
No Matches
Public Member Functions | List of all members
lsst::meas::base::SafeShapeExtractor Class Reference

Utility class for measurement algorithms that extracts an ellipse from the Shape slot and handles errors in a safe and consistent way. More...

#include <InputUtilities.h>

Public Member Functions

 SafeShapeExtractor (afw::table::Schema &schema, std::string const &name)
 Construct the extractor, creating a flag alias that indicates failure in the input centroid by linking to the slot shape flag.
 
afw::geom::ellipses::Quadrupole operator() (afw::table::SourceRecord &record, FlagHandler const &flags) const
 Extract a shape from the given record.
 

Detailed Description

Utility class for measurement algorithms that extracts an ellipse from the Shape slot and handles errors in a safe and consistent way.

Definition at line 90 of file InputUtilities.h.

Constructor & Destructor Documentation

◆ SafeShapeExtractor()

lsst::meas::base::SafeShapeExtractor::SafeShapeExtractor ( afw::table::Schema & schema,
std::string const & name )

Construct the extractor, creating a flag alias that indicates failure in the input centroid by linking to the slot shape flag.

Parameters
[out]schemaSchema to which the alias should be added. The "slot_Shape" alias must already be present in the Schema's AliasMap.
[in]nameThe name of the algorithm; the flag alias added will be "<name>_flag_badShape".

Definition at line 133 of file InputUtilities.cc.

133 : _name(name) {
134 // Instead of aliasing e.g. MyAlgorithm_flag_badShape->slot_Shape_flag, we actually
135 // look up the target of slot_Shape_flag, and alias that to MyAlgorithm_flag_badCentroid.
136 // That way, if someone changes the slots later, after we've already done the measurement,
137 // this alias still points to the right thing.
138 std::string aliasedFlagName = schema.join("slot", "Shape", "flag");
139 std::string slotFlagName = schema.getAliasMap()->apply(aliasedFlagName);
140 if (aliasedFlagName == slotFlagName) {
141 throw LSST_EXCEPT(pex::exceptions::LogicError,
142 (boost::format("Alias for '%s' must be defined before initializing '%s' plugin.") %
143 aliasedFlagName % name)
144 .str());
145 }
146 schema.getAliasMap()->set(schema.join(name, "flag", "badShape"), slotFlagName);
147}
#define LSST_EXCEPT(type,...)
Create an exception with a given type.
Definition Exception.h:48

Member Function Documentation

◆ operator()()

afw::geom::ellipses::Quadrupole lsst::meas::base::SafeShapeExtractor::operator() ( afw::table::SourceRecord & record,
FlagHandler const & flags ) const

Extract a shape from the given record.

We use the Shape slot if it is not NaN, and throw MeasurementError if it is (with only the general failure code attached to the MeasurementError).

If the Shape slot is not defined, we throw FatalAlgorithmError, as this indicates a configuration problem.

If the Shape slot value is NaN and is not flagged (or there is no Shape slot flag), we throw RuntimeError, which should cause the measurement framework to log a warning and set the current algorithm's general failure flag if it is allowed to propagate out of the algorithm implementation.

If the Shape slot is flagged and we nevertheless obtain a usable ellipse, we set the current algorithm's general failure flag, but return the ellipse as well, allowing it to continue while indicating that the result may not be reliable. A singular ellipse (i.e. one with a non-positive quadrupole matrix determinant) is treated the same as a NaN ellipse; it is not considered usable.

Definition at line 149 of file InputUtilities.cc.

150 {
151 if (!record.getTable()->getCentroidSlot().getMeasKey().isValid()) {
152 throw LSST_EXCEPT(
153 FatalAlgorithmError,
154 (boost::format("%s requires a shape, but the shape slot is not defined") % _name).str());
155 }
156 afw::geom::ellipses::Quadrupole result = record.getShape();
157 if (std::isnan(result.getIxx()) || std::isnan(result.getIyy()) || std::isnan(result.getIxy()) ||
158 result.getIxx() * result.getIyy() < (1.0 + 1.0e-6) * result.getIxy() * result.getIxy()
159 // We are checking that Ixx*Iyy > (1 + epsilon)*Ixy*Ixy where epsilon is suitably small. The
160 // value of epsilon used here is a magic number. DM-5801 is supposed to figure out if we are
161 // to keep this value.
162 ) {
163 if (!record.getTable()->getShapeSlot().getFlagKey().isValid()) {
164 throw LSST_EXCEPT(
165 pex::exceptions::RuntimeError,
166 (boost::format("%s: Shape slot value is NaN, but there is no Shape slot flag "
167 "(is the executionOrder for %s lower than that of the slot Shape?)") %
168 _name % _name)
169 .str());
170 }
171 if (!record.getShapeFlag()) {
172 throw LSST_EXCEPT(
173 pex::exceptions::RuntimeError,
174 (boost::format("%s: Shape slot value is NaN, but the Shape slot flag is not set "
175 "(is the executionOrder for %s lower than that of the slot Shape?)") %
176 _name % _name)
177 .str());
178 }
179 throw LSST_EXCEPT(
180 MeasurementError,
181 (boost::format("%s: Shape needed, and Shape slot measurement failed.") % _name).str(),
182 flags.getFailureFlagNumber());
183 } else if (record.getTable()->getShapeSlot().getFlagKey().isValid() && record.getShapeFlag()) {
184 // we got a usable value, but the shape flag might still be set, and that might affect
185 // the current measurement
186 flags.setValue(record, flags.getFailureFlagNumber(), true);
187 }
188 return result;
189}
T isnan(T... args)

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