LSST Applications g0265f82a02+0e5473021a,g02d81e74bb+f5613e8b4f,g1470d8bcf6+190ad2ba91,g14a832a312+311607e4ab,g2079a07aa2+86d27d4dc4,g2305ad1205+a8e3196225,g295015adf3+b67ee847e5,g2bbee38e9b+0e5473021a,g337abbeb29+0e5473021a,g3ddfee87b4+a761f810f3,g487adcacf7+17c8fdbcbd,g50ff169b8f+96c6868917,g52b1c1532d+585e252eca,g591dd9f2cf+65b5bd823e,g5a732f18d5+53520f316c,g64a986408d+f5613e8b4f,g6c1bc301e9+51106c2951,g858d7b2824+f5613e8b4f,g8a8a8dda67+585e252eca,g99cad8db69+6729933424,g9ddcbc5298+9a081db1e4,ga1e77700b3+15fc3df1f7,ga8c6da7877+ef4e3a5875,gb0e22166c9+60f28cb32d,gb6a65358fc+0e5473021a,gba4ed39666+c2a2e4ac27,gbb8dafda3b+e9bba80f27,gc120e1dc64+eee469a5e5,gc28159a63d+0e5473021a,gcf0d15dbbd+a761f810f3,gdaeeff99f8+f9a426f77a,ge6526c86ff+d4c1d4bfef,ge79ae78c31+0e5473021a,gee10cc3b42+585e252eca,gf1cff7945b+f5613e8b4f,w.2024.16
LSST Data Management Base Package
Loading...
Searching...
No Matches
Public Member Functions | List of all members
lsst::meas::base::SafeCentroidExtractor Class Reference

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

#include <InputUtilities.h>

Public Member Functions

 SafeCentroidExtractor (afw::table::Schema &schema, std::string const &name, bool isCentroider=false)
 Construct the extractor, creating a flag alias that indicates failure in the input centroid by linking to the slot centroid flag.
 
geom::Point2D operator() (afw::table::SourceRecord &record, FlagHandler const &flags) const
 Extract a position from the given record.
 

Detailed Description

Utility class for measurement algorithms that extracts a position from the Centroid slot and handles errors in a safe and consistent way.

Definition at line 39 of file InputUtilities.h.

Constructor & Destructor Documentation

◆ SafeCentroidExtractor()

lsst::meas::base::SafeCentroidExtractor::SafeCentroidExtractor ( afw::table::Schema & schema,
std::string const & name,
bool isCentroider = false )

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

Parameters
[out]schemaSchema to which the alias should be added. The "slot_Centroid" alias must already be present in the Schema's AliasMap.
[in]nameThe name of the algorithm; the flag alias added will be "<name>_flag_badCentroid", or "<name>_flag_badInitialCentroid" if isCentroider=true.
[in]isCentroiderIndicates whether the calling algorithm is itself a centroid measurement algorithm. If true,, falling back to the Peak because there was no previous centroider or a previous centroider failed will not cause the general failure flag of the current algorithm to be set.

Definition at line 35 of file InputUtilities.cc.

37 : _name(name), _isCentroider(isCentroider) {
38 // Instead of aliasing e.g. MyAlgorithm_flag_badCentroid->slot_Centroid_flag, we actually
39 // look up the target of slot_Centroid_flag, and alias that to MyAlgorithm_flag_badCentroid.
40 // That way, if someone changes the slots later, after we've already done the measurement,
41 // this alias still points to the right thing.
42 std::string aliasedFlagName = schema.join("slot", "Centroid", "flag");
43 std::string slotFlagName = schema.getAliasMap()->apply(aliasedFlagName);
44 if (_isCentroider) {
45 if (slotFlagName != schema.join(name, "flag")) {
46 // only setup the alias if this isn't the slot algorithm itself (otherwise it'd be circular)
47 schema.getAliasMap()->set(schema.join(name, "flag", "badInitialCentroid"), slotFlagName);
48 }
49 } else {
50 if (aliasedFlagName == slotFlagName) {
51 throw LSST_EXCEPT(
52 pex::exceptions::LogicError,
53 (boost::format("Alias for '%s' must be defined before initializing '%s' plugin.") %
54 aliasedFlagName % name)
55 .str());
56 }
57 schema.getAliasMap()->set(schema.join(name, "flag", "badCentroid"), slotFlagName);
58 }
59}
#define LSST_EXCEPT(type,...)
Create an exception with a given type.
Definition Exception.h:48

Member Function Documentation

◆ operator()()

geom::Point2D lsst::meas::base::SafeCentroidExtractor::operator() ( afw::table::SourceRecord & record,
FlagHandler const & flags ) const

Extract a position from the given record.

We use the Centroid slot if it is not NaN, and fall back to the Peak on the Footprint otherwise.

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

If the Centroid slot value is NaN and is not flagged (or there is no Centroid 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 Centroid slot is NaN and there is no Footprint or Peak (even if the centroid is flagged), we also throw RuntimeError, as this indicates something wrong in another stage of the pipeline that should be addressed before measurement is run.

If the Centroid slot is flagged and we nevertheless obtain a usable position (either from a the Centroid slot itself or from a successful fall-back to the Peak), we set the current algorithm's general failure flag, but return the position as well, allowing it to continue while indicating that the result may not be reliable.

Definition at line 84 of file InputUtilities.cc.

85 {
86 if (!record.getTable()->getCentroidSlot().getMeasKey().isValid()) {
87 if (_isCentroider) {
88 return extractPeak(record, _name);
89 } else {
90 throw LSST_EXCEPT(
91 FatalAlgorithmError,
92 (boost::format("%s requires a centroid, but the centroid slot is not defined") % _name)
93 .str());
94 }
95 }
96 geom::Point2D result = record.getCentroid();
97 if (std::isnan(result.getX()) || std::isnan(result.getY())) {
98 if (!record.getTable()->getCentroidSlot().getFlagKey().isValid()) {
99 if (_isCentroider) {
100 return extractPeak(record, _name);
101 } else {
102 throw LSST_EXCEPT(
103 pex::exceptions::RuntimeError,
104 (boost::format(
105 "%s: Centroid slot value is NaN, but there is no Centroid slot flag "
106 "(is the executionOrder for %s lower than that of the slot Centroid?)") %
107 _name % _name)
108 .str());
109 }
110 }
111 if (!record.getCentroidFlag() && !_isCentroider) {
112 throw LSST_EXCEPT(
113 pex::exceptions::RuntimeError,
114 (boost::format("%s: Centroid slot value is NaN, but the Centroid slot flag is not set "
115 "(is the executionOrder for %s lower than that of the slot Centroid?)") %
116 _name % _name)
117 .str());
118 }
119 result = extractPeak(record, _name);
120 if (!_isCentroider) {
121 // set the general flag, because using the Peak might affect the current measurement
122 flags.setValue(record, flags.getFailureFlagNumber(), true);
123 }
124 } else if (!_isCentroider && record.getTable()->getCentroidSlot().getFlagKey().isValid() &&
125 record.getCentroidFlag()) {
126 // we got a usable value, but the centroid flag is still be set, and that might affect
127 // the current measurement
128 flags.setValue(record, flags.getFailureFlagNumber(), true);
129 }
130 return result;
131}
T isnan(T... args)

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