|
lsst.afw g3a5ebb7d8a+28b83bf6a5
|
#include "pybind11/pybind11.h"#include "ndarray/pybind11.h"#include "lsst/cpputils/python.h"#include "lsst/afw/table/BaseColumnView.h"#include "lsst/afw/table/Catalog.h"Go to the source code of this file.
Classes | |
| class | lsst::afw::table::python::PyCatalogIndexIterator< Record > |
Namespaces | |
| namespace | lsst |
| namespace | lsst::afw |
| namespace | lsst::afw::table |
| namespace | lsst::afw::table::python |
Typedefs | |
| template<typename Record> | |
| using | lsst::afw::table::python::PyCatalog = pybind11::classh<CatalogT<Record>> |
Functions | |
| template<typename T, typename Record> | |
| ndarray::Array< typename Field< T >::Value const, 1, 1 > | lsst::afw::table::python::_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 > | lsst::afw::table::python::_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 > | lsst::afw::table::python::_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 | lsst::afw::table::python::_setFlagColumnToArray (CatalogT< Record > &catalog, Key< Flag > const &key, ndarray::Array< bool const, 1 > const &array) |
| template<typename Record> | |
| void | lsst::afw::table::python::_setFlagColumnToScalar (CatalogT< Record > &catalog, Key< Flag > const &key, bool value) |
| template<typename T, typename Record> | |
| void | lsst::afw::table::python::declareCatalogOverloads (PyCatalog< Record > &cls) |
| Declare field-type-specific overloaded catalog member functions for one field type. | |
| template<typename T, typename Record> | |
| void | lsst::afw::table::python::declareCatalogArrayOverloads (PyCatalog< Record > &cls) |
| Declare field-type-specific overloaded catalog member functions for one array-valued field type. | |
| template<typename Record> | |
| 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>. | |