Loading [MathJax]/extensions/tex2jax.js
LSST Applications g04a91732dc+7fec47d7bc,g07dc498a13+5ab4d22ec3,g0fba68d861+565de8e5d5,g1409bbee79+5ab4d22ec3,g1a7e361dbc+5ab4d22ec3,g1fd858c14a+11200c7927,g20f46db602+25d63fd678,g35bb328faa+fcb1d3bbc8,g4d2262a081+61302e889d,g4d39ba7253+d05e267ece,g4e0f332c67+5d362be553,g53246c7159+fcb1d3bbc8,g60b5630c4e+d05e267ece,g78460c75b0+2f9a1b4bcd,g786e29fd12+cf7ec2a62a,g7b71ed6315+fcb1d3bbc8,g8048e755c2+a1301e4c20,g8852436030+163ceb82d8,g89139ef638+5ab4d22ec3,g89e1512fd8+fbb808ebce,g8d6b6b353c+d05e267ece,g9125e01d80+fcb1d3bbc8,g989de1cb63+5ab4d22ec3,g9f33ca652e+8abe617c77,ga9baa6287d+d05e267ece,gaaedd4e678+5ab4d22ec3,gabe3b4be73+1e0a283bba,gb1101e3267+fefe9ce5b1,gb58c049af0+f03b321e39,gb90eeb9370+824c420ec4,gc741bbaa4f+77ddc33078,gcf25f946ba+163ceb82d8,gd315a588df+0f88d5218e,gd6cbbdb0b4+c8606af20c,gd9a9a58781+fcb1d3bbc8,gde0f65d7ad+e6bd566e97,ge278dab8ac+932305ba37,ge82c20c137+76d20ab76d,w.2025.10
LSST Data Management Base Package
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
_source.cc
Go to the documentation of this file.
1/*
2 * This file is part of afw.
3 *
4 * Developed for the LSST Data Management System.
5 * This product includes software developed by the LSST Project
6 * (https://www.lsst.org).
7 * See the COPYRIGHT file at the top-level directory of this distribution
8 * for details of code ownership.
9 *
10 * This program is free software: you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation, either version 3 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program. If not, see <https://www.gnu.org/licenses/>.
22 */
23
24#include "pybind11/pybind11.h"
25#include "pybind11/eigen.h"
26
27#include <memory>
28
29#include "ndarray/pybind11.h"
30
32
42
43namespace py = pybind11;
44using namespace pybind11::literals;
45
46namespace lsst {
47namespace afw {
48namespace table {
49
50using cpputils::python::WrapperCollection;
51
52namespace {
53
54using PySourceRecord = py::class_<SourceRecord, std::shared_ptr<SourceRecord>, SimpleRecord>;
55using PySourceTable = py::class_<SourceTable, std::shared_ptr<SourceTable>, SimpleTable>;
56using PySourceColumnView =
57 py::class_<SourceColumnViewT<SourceRecord>, std::shared_ptr<SourceColumnViewT<SourceRecord>>,
59
60/*
61Declare member and static functions for a pybind11 wrapper of SourceRecord
62*/
63PySourceRecord declareSourceRecord(WrapperCollection &wrappers) {
64 return wrappers.wrapType(PySourceRecord(wrappers.module, "SourceRecord"), [](auto &mod, auto &cls) {
65 cls.def("getFootprint", &SourceRecord::getFootprint);
66 cls.def("setFootprint", &SourceRecord::setFootprint);
67 cls.def("getTable", &SourceRecord::getTable);
68 cls.def_property_readonly("table", &SourceRecord::getTable);
69
70 cls.def("getParent", &SourceRecord::getParent);
71 cls.def("setParent", &SourceRecord::setParent, "id"_a);
72
73 cls.def("getPsfInstFlux", &SourceRecord::getPsfInstFlux);
74 cls.def("getPsfInstFluxErr", &SourceRecord::getPsfInstFluxErr);
75 cls.def("getPsfFluxFlag", &SourceRecord::getPsfFluxFlag);
76
77 cls.def("getModelInstFlux", &SourceRecord::getModelInstFlux);
78 cls.def("getModelInstFluxErr", &SourceRecord::getModelInstFluxErr);
79 cls.def("getModelFluxFlag", &SourceRecord::getModelFluxFlag);
80
81 cls.def("getApInstFlux", &SourceRecord::getApInstFlux);
82 cls.def("getApInstFluxErr", &SourceRecord::getApInstFluxErr);
83 cls.def("getApFluxFlag", &SourceRecord::getApFluxFlag);
84
85 cls.def("getGaussianInstFlux", &SourceRecord::getGaussianInstFlux);
86 cls.def("getGaussianInstFluxErr", &SourceRecord::getGaussianInstFluxErr);
87 cls.def("getGaussianFluxFlag", &SourceRecord::getGaussianFluxFlag);
88
89 cls.def("getCalibInstFlux", &SourceRecord::getCalibInstFlux);
90 cls.def("getCalibInstFluxErr", &SourceRecord::getCalibInstFluxErr);
91 cls.def("getCalibFluxFlag", &SourceRecord::getCalibFluxFlag);
92
93 cls.def("getCentroid", &SourceRecord::getCentroid);
94 cls.def("getCentroidErr", &SourceRecord::getCentroidErr);
95 cls.def("getCentroidFlag", &SourceRecord::getCentroidFlag);
96
97 cls.def("getShape", &SourceRecord::getShape);
98 cls.def("getShapeErr", &SourceRecord::getShapeErr);
99 cls.def("getShapeFlag", &SourceRecord::getShapeFlag);
100
101 cls.def("getX", &SourceRecord::getX);
102 cls.def("getY", &SourceRecord::getY);
103 cls.def("getIxx", &SourceRecord::getIxx);
104 cls.def("getIyy", &SourceRecord::getIyy);
105 cls.def("getIxy", &SourceRecord::getIxy);
106 cls.def("updateCoord", (void (SourceRecord::*)(geom::SkyWcs const &, bool)) & SourceRecord::updateCoord,
107 "wcs"_a, "include_covariance"_a=true);
108 cls.def("updateCoord",
109 (void (SourceRecord::*)(geom::SkyWcs const &, PointKey<double> const &, bool)) &
110 SourceRecord::updateCoord,
111 "wcs"_a, "key"_a, "include_covariance"_a=true);
112 });
113}
114
115/*
116Declare member and static functions for a pybind11 wrapper of SourceTable
117*/
118PySourceTable declareSourceTable(WrapperCollection &wrappers) {
119 return wrappers.wrapType(PySourceTable(wrappers.module, "SourceTable"), [](auto &mod, auto &cls) {
120 cls.def("clone", &SourceTable::clone);
121 cls.def_static("make",
122 (std::shared_ptr<SourceTable>(*)(Schema const &, std::shared_ptr<IdFactory> const &)) &
123 SourceTable::make);
124 cls.def_static("make", (std::shared_ptr<SourceTable>(*)(Schema const &)) & SourceTable::make);
125 cls.def_static("makeMinimalSchema", &SourceTable::makeMinimalSchema);
126 cls.def_static("getParentKey", &SourceTable::getParentKey);
127 cls.def("copyRecord", (std::shared_ptr<SourceRecord>(SourceTable::*)(BaseRecord const &)) &
128 SourceTable::copyRecord);
129 cls.def("copyRecord",
130 (std::shared_ptr<SourceRecord>(SourceTable::*)(BaseRecord const &, SchemaMapper const &)) &
131 SourceTable::copyRecord);
132 cls.def("makeRecord", &SourceTable::makeRecord);
133
134 cls.def("getPsfFluxSlot", &SourceTable::getPsfFluxSlot);
135 cls.def("definePsfFlux", &SourceTable::definePsfFlux, "name"_a);
136
137 cls.def("getModelFluxSlot", &SourceTable::getModelFluxSlot);
138 cls.def("defineModelFlux", &SourceTable::defineModelFlux, "name"_a);
139
140 cls.def("getApFluxSlot", &SourceTable::getApFluxSlot);
141 cls.def("defineApFlux", &SourceTable::defineApFlux, "name"_a);
142
143 cls.def("getGaussianFluxSlot", &SourceTable::getGaussianFluxSlot);
144 cls.def("defineGaussianFlux", &SourceTable::defineGaussianFlux, "name"_a);
145
146 cls.def("getCalibFluxSlot", &SourceTable::getCalibFluxSlot);
147 cls.def("defineCalibFlux", &SourceTable::defineCalibFlux, "name"_a);
148
149 cls.def("getCentroidSlot", &SourceTable::getCentroidSlot);
150 cls.def("defineCentroid", &SourceTable::defineCentroid, "name"_a);
151
152 cls.def("getShapeSlot", &SourceTable::getShapeSlot);
153 cls.def("defineShape", &SourceTable::defineShape, "name"_a);
154 });
155}
156
157PySourceColumnView declareSourceColumnView(WrapperCollection &wrappers) {
158 table::python::declareColumnView<SourceRecord>(wrappers, "Source", true);
159 return wrappers.wrapType(PySourceColumnView(wrappers.module, "SourceColumnView"),
160 [](auto &mod, auto &cls) {
161 using Class = SourceColumnViewT<SourceRecord>;
162 cls.def("getPsfInstFlux", &Class::getPsfInstFlux);
163 cls.def("getPsfInstFluxErr", &Class::getPsfInstFluxErr);
164 cls.def("getApInstFlux", &Class::getApInstFlux);
165 cls.def("getApInstFluxErr", &Class::getApInstFluxErr);
166 cls.def("getModelInstFlux", &Class::getModelInstFlux);
167 cls.def("getModelInstFluxErr", &Class::getModelInstFluxErr);
168 cls.def("getGaussianInstFlux", &Class::getGaussianInstFlux);
169 cls.def("getGaussianInstFluxErr", &Class::getGaussianInstFluxErr);
170 cls.def("getCalibInstFlux", &Class::getCalibInstFlux);
171 cls.def("getCalibInstFluxErr", &Class::getCalibInstFluxErr);
172 cls.def("getX", &Class::getX);
173 cls.def("getY", &Class::getY);
174 cls.def("getIxx", &Class::getIxx);
175 cls.def("getIyy", &Class::getIyy);
176 cls.def("getIxy", &Class::getIxy);
177 });
178}
179
180} // namespace
181
183 // TODO: uncomment once afw.geom uses WrapperCollection
184 // wrappers.addSignatureDependency("lsst.afw.geom.ellipses");
185
186 // SourceFitsFlags enum values are used as integer masks, so wrap as attributes instead of an enum
187 // static_cast is required to avoid an import error (py::cast and py::int_ do not work by themselves
188 // and are not required with the static_cast)
189 auto &mod = wrappers.module;
190 mod.attr("SOURCE_IO_NO_FOOTPRINTS") = static_cast<int>(SourceFitsFlags::SOURCE_IO_NO_FOOTPRINTS);
191 mod.attr("SOURCE_IO_NO_HEAVY_FOOTPRINTS") =
193
194 auto clsSourceRecord = declareSourceRecord(wrappers);
195 auto clsSourceTable = declareSourceTable(wrappers);
196 auto clsSourceColumnView = declareSourceColumnView(wrappers);
197 auto clsSourceCatalog = table::python::declareSortedCatalog<SourceRecord>(wrappers, "Source");
198
199 clsSourceRecord.attr("Table") = clsSourceTable;
200 clsSourceRecord.attr("ColumnView") = clsSourceColumnView;
201 clsSourceRecord.attr("Catalog") = clsSourceCatalog;
202 clsSourceTable.attr("Record") = clsSourceRecord;
203 clsSourceTable.attr("ColumnView") = clsSourceColumnView;
204 clsSourceTable.attr("Catalog") = clsSourceCatalog;
205 clsSourceCatalog.attr("Record") = clsSourceRecord;
206 clsSourceCatalog.attr("Table") = clsSourceTable;
207 clsSourceCatalog.attr("ColumnView") = clsSourceColumnView;
208}
209
210} // namespace table
211} // namespace afw
212} // namespace lsst
PyType wrapType(PyType cls, ClassWrapperCallback function, bool setModuleName=true)
Add a type (class or enum) wrapper, deferring method and other attribute definitions until finish() i...
Definition python.h:391
pybind11::module module
The module object passed to the PYBIND11_MODULE block that contains this WrapperCollection.
Definition python.h:448
Record class that must contain a unique ID field and a celestial coordinate field.
Definition Simple.h:48
Table class that must contain a unique ID field and a celestial coordinate field.
Definition Simple.h:102
A helper class for subdividing pybind11 module across multiple translation units (i....
Definition python.h:242
pybind11::module module
The module object passed to the PYBIND11_MODULE block that contains this WrapperCollection.
Definition python.h:448
PySortedCatalog< Record > declareSortedCatalog(cpputils::python::WrapperCollection &wrappers, std::string const &name, bool isBase=false)
Wrap an instantiation of lsst::afw::table::SortedCatalogT<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<Record...
Definition columnView.h:53
void wrapSource(WrapperCollection &wrappers)
Definition _source.cc:182
@ SOURCE_IO_NO_FOOTPRINTS
Do not read/write footprints at all.
Definition Source.h:53
@ SOURCE_IO_NO_HEAVY_FOOTPRINTS
Read/write heavy footprints as non-heavy footprints.
Definition Source.h:54