|
lsst.afw gf03f0b42f3+45adbcf3d0
|
Classes | |
| class | PyCatalogIndexIterator |
Typedefs | |
| template<typename Record> | |
| using | PyCatalog = pybind11::classh<CatalogT<Record>> |
| template<typename Record> | |
| using | PyColumnView = pybind11::classh<ColumnViewT<Record>, BaseColumnView> |
| template<typename Record> | |
| using | PySortedCatalog = pybind11::classh<SortedCatalogT<Record>, CatalogT<Record>> |
Functions | |
| template<typename T, typename Record> | |
| ndarray::Array< typename Field< T >::Value const, 1, 1 > | _getArrayFromCatalog (CatalogT< Record > const &catalog, Key< T > const &key) |
| Extract a column from a potentially non-contiguous Catalog. | |
| template<typename Record> | |
| ndarray::Array< double const, 1, 1 > | _getArrayFromCatalog (CatalogT< Record > const &catalog, Key< Angle > const &key) |
| Extract a column from a potentially non-contiguous Catalog (angle specialization) | |
| template<typename T, typename Record> | |
| ndarray::Array< typename Field< T >::Value const, 2, 2 > | _getArrayFromCatalog (CatalogT< Record > const &catalog, Key< Array< T > > const &key) |
| Extract an array-valued column from a potentially non-contiguous Catalog into a 2-d array. | |
| template<typename Record> | |
| void | _setFlagColumnToArray (CatalogT< Record > &catalog, Key< Flag > const &key, ndarray::Array< bool const, 1 > const &array) |
| template<typename Record> | |
| void | _setFlagColumnToScalar (CatalogT< Record > &catalog, Key< Flag > const &key, bool value) |
| template<typename T, typename Record> | |
| void | declareCatalogOverloads (PyCatalog< Record > &cls) |
| Declare field-type-specific overloaded catalog member functions for one field type. | |
| template<typename T, typename Record> | |
| void | declareCatalogArrayOverloads (PyCatalog< Record > &cls) |
| Declare field-type-specific overloaded catalog member functions for one array-valued field type. | |
| template<typename Record> | |
| PyCatalog< Record > | declareCatalog (cpputils::python::WrapperCollection &wrappers, std::string const &name, bool isBase=false) |
| Wrap an instantiation of lsst::afw::table::CatalogT<Record>. | |
| template<typename Record> | |
| PyColumnView< Record > | declareColumnView (cpputils::python::WrapperCollection &wrappers, std::string const &name, bool isBase=false) |
| Declare member and static functions for a given instantiation of lsst::afw::table::ColumnViewT<RecordT>. | |
| template<typename Record> | |
| PySortedCatalog< Record > | declareSortedCatalog (cpputils::python::WrapperCollection &wrappers, std::string const &name, bool isBase=false) |
| Wrap an instantiation of lsst::afw::table::SortedCatalogT<Record>. | |
| using lsst::afw::table::python::PyCatalog = pybind11::classh<CatalogT<Record>> |
| using lsst::afw::table::python::PyColumnView = pybind11::classh<ColumnViewT<Record>, BaseColumnView> |
Definition at line 39 of file columnView.h.
| using lsst::afw::table::python::PySortedCatalog = pybind11::classh<SortedCatalogT<Record>, CatalogT<Record>> |
Definition at line 39 of file sortedCatalog.h.
| PyCatalog< Record > lsst::afw::table::python::declareCatalog | ( | cpputils::python::WrapperCollection & | wrappers, |
| std::string const & | name, | ||
| bool | isBase = false ) |
Wrap an instantiation of lsst::afw::table::CatalogT<Record>.
In addition to calling this method you must call addCatalogMethods on the class object in Python.
| Record | Record type, e.g. BaseRecord or SimpleRecord. |
| [in] | wrappers | Package manager class will be added to. |
| [in] | name | Name prefix of the record type, e.g. "Base" or "Simple". |
| [in] | isBase | Whether this instantiation is only being used as a base class (used to set the class name). |
| void lsst::afw::table::python::declareCatalogArrayOverloads | ( | PyCatalog< Record > & | cls | ) |
Declare field-type-specific overloaded catalog member functions for one array-valued field type.
| T | Array element type. |
| Record | Record type, e.g. BaseRecord or SimpleRecord. |
| void lsst::afw::table::python::declareCatalogOverloads | ( | PyCatalog< Record > & | cls | ) |
Declare field-type-specific overloaded catalog member functions for one field type.
| T | Field type. |
| Record | Record type, e.g. BaseRecord or SimpleRecord. |
| PyColumnView< Record > lsst::afw::table::python::declareColumnView | ( | cpputils::python::WrapperCollection & | wrappers, |
| std::string const & | name, | ||
| bool | isBase = false ) |
Declare member and static functions for a given instantiation of lsst::afw::table::ColumnViewT<RecordT>.
| Record | Record type, e.g. BaseRecord or SimpleRecord. |
| [in] | wrappers | Package manager class will be added to. |
| [in] | name | Name prefix of the record type, e.g. "Base" or "Simple". |
| [in] | isBase | Whether this instantiation is only being used as a base class (used to set the class name). |
Definition at line 52 of file columnView.h.
| PySortedCatalog< Record > lsst::afw::table::python::declareSortedCatalog | ( | cpputils::python::WrapperCollection & | wrappers, |
| std::string const & | name, | ||
| bool | isBase = false ) |
Wrap an instantiation of lsst::afw::table::SortedCatalogT<Record>.
In addition to calling this method (which also instantiates and wraps the CatalogT base class), you must call addCatalogMethods on the class object in Python.
| Record | Record type, e.g. BaseRecord or SimpleRecord. |
| [in] | wrappers | Package manager class will be added to. |
| [in] | name | Name prefix of the record type, e.g. "Base" or "Simple". |
| [in] | isBase | Whether this instantiation is only being used as a base class (used to set the class name). |
Definition at line 56 of file sortedCatalog.h.