lsst.afw
22.0.1-35-g9503da760+2534fc217b
|
Field base class default implementation (used for numeric scalars and lsst::geom::Angle). More...
#include <FieldBase.h>
Public Types | |
using | Value = T |
the type returned by BaseRecord::get More... | |
using | Reference = T & |
the type returned by BaseRecord::operator[] (non-const) More... | |
using | ConstReference = const T & |
the type returned by BaseRecord::operator[] (const) More... | |
using | Element = T |
the type of subfields (the same as the type itself for scalars) More... | |
Public Member Functions | |
std::size_t | getElementCount () const noexcept |
Return the number of subfield elements (always one for scalars). More... | |
FieldBase ()=default | |
FieldBase (std::size_t) | |
FieldBase (FieldBase const &) noexcept=default | |
FieldBase (FieldBase &&) noexcept=default | |
FieldBase & | operator= (FieldBase const &) noexcept=default |
FieldBase & | operator= (FieldBase &&) noexcept=default |
~FieldBase () noexcept=default | |
Static Public Member Functions | |
static std::string | getTypeString () |
Return a string description of the field type. More... | |
Protected Member Functions | |
void | stream (std::ostream &os) const |
Defines how Fields are printed. More... | |
Reference | getReference (Element *p, ndarray::Manager::Ptr const &) const |
Used to implement BaseRecord::operator[] (non-const). More... | |
ConstReference | getConstReference (Element const *p, ndarray::Manager::Ptr const &) const |
Used to implement BaseRecord::operator[] (const). More... | |
Value | getValue (Element const *p, ndarray::Manager::Ptr const &) const |
Used to implement BaseRecord::get. More... | |
void | setValue (Element *p, ndarray::Manager::Ptr const &, Value v) const |
Used to implement BaseRecord::set. More... | |
Static Protected Member Functions | |
static FieldBase | makeDefault () noexcept |
Needed to allow Keys to be default-constructed. More... | |
Field base class default implementation (used for numeric scalars and lsst::geom::Angle).
Definition at line 41 of file FieldBase.h.
using lsst::afw::table::FieldBase< T >::ConstReference = const T & |
the type returned by BaseRecord::operator[] (const)
Definition at line 44 of file FieldBase.h.
using lsst::afw::table::FieldBase< T >::Element = T |
the type of subfields (the same as the type itself for scalars)
Definition at line 45 of file FieldBase.h.
using lsst::afw::table::FieldBase< T >::Reference = T & |
the type returned by BaseRecord::operator[] (non-const)
Definition at line 43 of file FieldBase.h.
using lsst::afw::table::FieldBase< T >::Value = T |
the type returned by BaseRecord::get
Definition at line 42 of file FieldBase.h.
|
default |
|
inline |
Definition at line 57 of file FieldBase.h.
|
defaultnoexcept |
|
defaultnoexcept |
|
defaultnoexcept |
|
inlineprotected |
Used to implement BaseRecord::operator[] (const).
Definition at line 78 of file FieldBase.h.
|
inlinenoexcept |
Return the number of subfield elements (always one for scalars).
Definition at line 48 of file FieldBase.h.
|
inlineprotected |
Used to implement BaseRecord::operator[] (non-const).
Definition at line 75 of file FieldBase.h.
|
static |
Return a string description of the field type.
Definition at line 56 of file FieldBase.cc.
|
inlineprotected |
Used to implement BaseRecord::get.
Definition at line 81 of file FieldBase.h.
|
inlinestaticprotectednoexcept |
Needed to allow Keys to be default-constructed.
Definition at line 69 of file FieldBase.h.
|
defaultnoexcept |
|
defaultnoexcept |
|
inlineprotected |
Used to implement BaseRecord::set.
Definition at line 84 of file FieldBase.h.
|
inlineprotected |
Defines how Fields are printed.
Definition at line 72 of file FieldBase.h.