|
LSST Applications g00d0e8bbd7+8c5ae1fdc5,g013ef56533+d04f416e11,g083dd6704c+f1e82baedf,g199a45376c+0ba108daf9,g1c5cce2383+2151f435cb,g1fd858c14a+c91a5e8f21,g210f2d0738+99b8bc2cff,g262e1987ae+108936e61d,g29ae962dfc+98ca709394,g2cef7863aa+aef1011c0b,g30d7c61c20+1f854baab0,g35bb328faa+8c5ae1fdc5,g3fd5ace14f+7197909290,g47891489e3+fd2de7ea53,g53246c7159+8c5ae1fdc5,g5b326b94bb+e6f8043508,g64539dfbff+99b8bc2cff,g67b6fd64d1+fd2de7ea53,g74acd417e5+4e13ccdc78,g786e29fd12+668abc6043,g87389fa792+8856018cbb,g89139ef638+fd2de7ea53,g8d7436a09f+c836874b4c,g8ea07a8fe4+b212507b11,g90f42f885a+e1755607f3,g97be763408+e01d64cc1c,g98df359435+1c97489bd3,g9cbe204335+43ac651df0,ga2180abaac+8c5ae1fdc5,gbf99507273+8c5ae1fdc5,gc2a301910b+99b8bc2cff,gca7fc764a6+fd2de7ea53,gd7ef33dd92+fd2de7ea53,gdab6d2f7ff+4e13ccdc78,gdb1e2cdc75+a91d01303c,ge410e46f29+fd2de7ea53,ge41e95a9f2+99b8bc2cff,geaed405ab2+0d91c11c6d,w.2025.43
LSST Data Management Base Package
|
#include "pybind11/pybind11.h"#include <string>#include "ndarray.h"#include "lsst/afw/geom/SkyWcs.h"#include "lsst/afw/image/PhotoCalib.h"#include "lsst/afw/table/fwd.h"#include "lsst/afw/table/Schema.h"#include "lsst/afw/table/SchemaMapper.h"Go to the source code of this file.
Namespaces | |
| namespace | lsst |
| namespace | lsst::meas |
| namespace | lsst::meas::base |
| namespace | lsst::meas::base::python |
Functions | |
| template<class Algorithm, class PyAlg> | |
| std::enable_if<!std::is_abstract< Algorithm >::value, void >::type | lsst::meas::base::python::declareAlgorithmConstructor (PyAlg &cls) |
| Wrap the standard algorithm constructor. | |
| template<class Algorithm, class PyAlg> | |
| std::enable_if< std::is_abstract< Algorithm >::value, void >::type | lsst::meas::base::python::declareAlgorithmConstructor (PyAlg &cls) |
| Dummy function for not wrapping the constructor of an abstract base class. | |
| template<class Algorithm, class PyAlg> | |
| void | lsst::meas::base::python::declareAlgorithm (PyAlg &clsAlgorithm) |
| Wrap the implicit API used by meas_base's algorithms. | |
| template<class Algorithm, class Control, class PyAlg, class PyCtrl> | |
| void | lsst::meas::base::python::declareAlgorithm (PyAlg &clsAlgorithm, PyCtrl &clsControl) |
| Wrap the implicit API used by meas_base's algorithm-control pairs (no transform). | |
| template<class Algorithm, class Control, class Transform, class PyAlg, class PyCtrl, class PyXform> | |
| void | lsst::meas::base::python::declareAlgorithm (PyAlg &clsAlgorithm, PyCtrl &clsControl, PyXform &clsTransform) |
| Wrap the implicit API used by meas_base's algorithm-control-transform triads. | |