23 #ifndef LSST_MEAS_BASE_FlagHandler_h_INCLUDED 24 #define LSST_MEAS_BASE_FlagHandler_h_INCLUDED 72 add(iter->name, iter->doc);
89 if (_vector[i].name == name)
return _vector[i];
102 if (_vector[i].name == name)
return true;
118 _vector.push_back(flagDef);
119 return _vector.back();
223 for (
unsigned int i = 0; i < _vector.size(); i++) {
224 if (_vector[i].
first == flagName && _vector[i].
second.isValid()) {
234 if (i < _vector.size() && _vector[i].second.isValid()) {
235 return _vector[i].first;
243 if (i < _vector.size() && _vector[i].second.isValid()) {
253 if (_vector[i].
first == flagName && _vector[i].
second.isValid()) {
263 if (i < _vector.size() && _vector[i].second.isValid()) {
274 if (_vector[i].
first == flagName && _vector[i].
second.isValid()) {
308 #endif // !LSST_MEAS_BASE_FlagHandler_h_INCLUDED std::size_t size() const
return the current size (number of defined elements) of the collection
Defines the fields and offsets for a table.
FlagDefinition(std::string const &name, std::string const &doc, std::size_t number=number_undefined)
A proxy type for name lookups in a Schema.
bool operator!=(FlagDefinition const &other) const
FlagDefinitionList()
initialize a FlagDefinition list with no entries.
Simple class used to define and document flags The name and doc constitute the identity of the FlagDe...
std::string getFlagName(std::size_t i) const
Return the value of the flag name corresponding to the given flag index.
unsigned int getFlagNumber(std::string const &flagName) const
Return the index of a flag with the given flag name.
void setValue(afw::table::BaseRecord &record, std::size_t i, bool value) const
Set the flag field corresponding to the given flag index.
Exception to be thrown when a measurement algorithm experiences a known failure mode.
Field< T >::Value get(Key< T > const &key) const
Return the value of a field for the given key.
FlagDefinition operator[](std::size_t index) const
get a reference to the FlagDefinition with specified array index
Exception to be thrown when a measurement algorithm experiences a fatal error.
std::size_t getFailureFlagNumber() const
Get the index of the General Failure flag, if one is defined.
static constexpr std::size_t number_undefined
Utility class for handling flag fields that indicate the failure modes of an algorithm.
A base class for image defects.
std::size_t failureFlagNumber
FlagHandler()
Each error should have a corresponding static FlagDefinition object.
FlagDefinition getDefinition(std::string const &name) const
get a reference to the FlagDefinition with specified name.
Eigen::Matrix< Scalar, Eigen::Dynamic, 1 > Vector
Typedefs to be used for probability and parameter values.
FlagDefinition getDefinition(std::size_t index) const
get a reference to the FlagDefinition with specified index.
bool operator==(FlagDefinition const &other) const
static FlagDefinitionList const & getEmptyList()
bool hasDefinition(std::string const &name) const
See if there is a FlagDefinition with specified name.
FlagDefinitionList(std::initializer_list< FlagDefinition > const &list)
initialize a FlagDefinition list from initializer_list.
FlagDefinition add(std::string const &name, std::string const &doc)
Add a new FlagDefinition to this list.
void setValue(afw::table::BaseRecord &record, std::string const &flagName, bool value) const
Set the flag field corresponding to the given flag name.
static std::string const & getFailureFlagName()
Define the universal name of the general failure flag.
Base class for all records.
bool getValue(afw::table::BaseRecord const &record, std::string const &flagName) const
Return the value of the flag field with the given flag name.
void set(Key< T > const &key, U const &value)
Set value of a field for the given key.
ItemVariant const * other
bool getValue(afw::table::BaseRecord const &record, std::size_t i) const
Return the value of the flag field corresponding to the given flag index.
vector-type utility class to build a collection of FlagDefinitions
daf::base::PropertyList * list