|
lsst.afw g3a5ebb7d8a+28b83bf6a5
|
SlotDefinition specialization for fluxes. More...
#include <slots.h>
Public Types | |
| using | MeasValue = double |
| Type returned by accessing the slot measurement. | |
| using | ErrValue = double |
| Type returned by accessing the slot uncertainty. | |
| using | MeasKey = Key<double> |
| Key type used to access the slot measurement. | |
| using | ErrKey = Key<double> |
| Key type used to access the slot uncertainty. | |
Public Member Functions | |
| FluxSlotDefinition (std::string const &name) | |
| Construct a SlotDefinition from the name of the slot (e.g. "PsfFlux"). | |
| bool | isValid () const |
| Return true if the key associated with the measurement is valid. | |
| MeasKey | getMeasKey () const |
| Return the cached Key used to access the slot measurement. | |
| ErrKey | getErrKey () const |
| Return the cached Key used to access the slot uncertainty. | |
| Key< Flag > | getFlagKey () const |
| Return the cached Key used to access the slot failure flag. | |
| void | setKeys (std::string const &alias, Schema const &schema) |
| Update the cached Keys following an change of aliases in the given Schema. | |
| FluxSlotDefinition (FluxSlotDefinition const &)=default | |
| FluxSlotDefinition (FluxSlotDefinition &&)=default | |
| FluxSlotDefinition & | operator= (FluxSlotDefinition const &)=default |
| FluxSlotDefinition & | operator= (FluxSlotDefinition &&)=default |
| ~FluxSlotDefinition ()=default | |
| std::string | getName () const |
| Return the name of the slot (e.g. "Centroid" or "PsfFlux"). | |
| std::string | getAlias () const |
| Return the alias field prefix used to lookup Keys for the slot. | |
Protected Attributes | |
| std::string | _name |
SlotDefinition specialization for fluxes.
| using lsst::afw::table::FluxSlotDefinition::ErrKey = Key<double> |
| using lsst::afw::table::FluxSlotDefinition::ErrValue = double |
| using lsst::afw::table::FluxSlotDefinition::MeasKey = Key<double> |
| using lsst::afw::table::FluxSlotDefinition::MeasValue = double |
|
inlineexplicit |
Construct a SlotDefinition from the name of the slot (e.g. "PsfFlux").
|
default |
|
default |
|
default |
|
inlineinherited |
|
inline |
|
inline |
|
inline |
|
inlineinherited |
|
inline |
|
default |
|
default |
| void lsst::afw::table::FluxSlotDefinition::setKeys | ( | std::string const & | alias, |
| Schema const & | schema ) |
Update the cached Keys following an change of aliases in the given Schema.
This method is intended for internal use by SourceTable only.
| [in] | alias | If non-empty, abort early if this string does not start with getAlias() (used to see if an alias change might have affected this slot, and avoid unnecessary work if not). |
| [in] | schema | Schema to search for Keys. |
|
protectedinherited |