LSSTApplications  18.0.0+106,18.0.0+50,19.0.0,19.0.0+1,19.0.0+10,19.0.0+11,19.0.0+13,19.0.0+17,19.0.0+2,19.0.0-1-g20d9b18+6,19.0.0-1-g425ff20,19.0.0-1-g5549ca4,19.0.0-1-g580fafe+6,19.0.0-1-g6fe20d0+1,19.0.0-1-g7011481+9,19.0.0-1-g8c57eb9+6,19.0.0-1-gb5175dc+11,19.0.0-1-gdc0e4a7+9,19.0.0-1-ge272bc4+6,19.0.0-1-ge3aa853,19.0.0-10-g448f008b,19.0.0-12-g6990b2c,19.0.0-2-g0d9f9cd+11,19.0.0-2-g3d9e4fb2+11,19.0.0-2-g5037de4,19.0.0-2-gb96a1c4+3,19.0.0-2-gd955cfd+15,19.0.0-3-g2d13df8,19.0.0-3-g6f3c7dc,19.0.0-4-g725f80e+11,19.0.0-4-ga671dab3b+1,19.0.0-4-gad373c5+3,19.0.0-5-ga2acb9c+2,19.0.0-5-gfe96e6c+2,w.2020.01
LSSTDataManagementBasePackage
_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 
31 #include "lsst/utils/python.h"
32 
35 #include "lsst/afw/table/Simple.h"
36 #include "lsst/afw/table/Schema.h"
37 #include "lsst/afw/table/slots.h"
38 #include "lsst/afw/table/Source.h"
42 
43 namespace py = pybind11;
44 using namespace pybind11::literals;
45 
46 namespace lsst {
47 namespace afw {
48 namespace table {
49 
50 using utils::python::WrapperCollection;
51 
52 namespace {
53 
54 using PySourceRecord = py::class_<SourceRecord, std::shared_ptr<SourceRecord>, SimpleRecord>;
55 using PySourceTable = py::class_<SourceTable, std::shared_ptr<SourceTable>, SimpleTable>;
56 using PySourceColumnView =
57  py::class_<SourceColumnViewT<SourceRecord>, std::shared_ptr<SourceColumnViewT<SourceRecord>>,
58  ColumnViewT<SourceRecord>>;
59 
60 /*
61 Declare member and static functions for a pybind11 wrapper of SourceRecord
62 */
63 PySourceRecord 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 &)) & SourceRecord::updateCoord,
107  "wcs"_a);
108  cls.def("updateCoord",
109  (void (SourceRecord::*)(geom::SkyWcs const &, PointKey<double> const &)) &
110  SourceRecord::updateCoord,
111  "wcs"_a, "key"_a);
112  });
113 }
114 
115 /*
116 Declare member and static functions for a pybind11 wrapper of SourceTable
117 */
118 PySourceTable 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  cls.def("getCentroidDefinition", &SourceTable::getCentroidDefinition);
152  cls.def("hasCentroidSlot", &SourceTable::hasCentroidSlot);
153  cls.def("getCentroidKey", &SourceTable::getCentroidKey);
154  cls.def("getCentroidErrKey", &SourceTable::getCentroidErrKey);
155  cls.def("getCentroidFlagKey", &SourceTable::getCentroidFlagKey);
156 
157  cls.def("getShapeSlot", &SourceTable::getShapeSlot);
158  cls.def("defineShape", &SourceTable::defineShape, "name"_a);
159  cls.def("getShapeDefinition", &SourceTable::getShapeDefinition);
160  cls.def("hasShapeSlot", &SourceTable::hasShapeSlot);
161  cls.def("getShapeKey", &SourceTable::getShapeKey);
162  cls.def("getShapeErrKey", &SourceTable::getShapeErrKey);
163  cls.def("getShapeFlagKey", &SourceTable::getShapeFlagKey);
164  });
165 }
166 
167 PySourceColumnView declareSourceColumnView(WrapperCollection &wrappers) {
168  table::python::declareColumnView<SourceRecord>(wrappers, "Source", true);
169  return wrappers.wrapType(PySourceColumnView(wrappers.module, "SourceColumnView"),
170  [](auto &mod, auto &cls) {
171  using Class = SourceColumnViewT<SourceRecord>;
172  cls.def("getPsfInstFlux", &Class::getPsfInstFlux);
173  cls.def("getPsfInstFluxErr", &Class::getPsfInstFluxErr);
174  cls.def("getApInstFlux", &Class::getApInstFlux);
175  cls.def("getApInstFluxErr", &Class::getApInstFluxErr);
176  cls.def("getModelInstFlux", &Class::getModelInstFlux);
177  cls.def("getModelInstFluxErr", &Class::getModelInstFluxErr);
178  cls.def("getGaussianInstFlux", &Class::getGaussianInstFlux);
179  cls.def("getGaussianInstFluxErr", &Class::getGaussianInstFluxErr);
180  cls.def("getCalibInstFlux", &Class::getCalibInstFlux);
181  cls.def("getCalibInstFluxErr", &Class::getCalibInstFluxErr);
182  cls.def("getX", &Class::getX);
183  cls.def("getY", &Class::getY);
184  cls.def("getIxx", &Class::getIxx);
185  cls.def("getIyy", &Class::getIyy);
186  cls.def("getIxy", &Class::getIxy);
187  });
188 }
189 
190 } // namespace
191 
192 void wrapSource(WrapperCollection &wrappers) {
193  // TODO: uncomment once afw.geom uses WrapperCollection
194  // wrappers.addSignatureDependency("lsst.afw.geom.ellipses");
195 
196  // SourceFitsFlags enum values are used as integer masks, so wrap as attributes instead of an enum
197  // static_cast is required to avoid an import error (py::cast and py::int_ do not work by themselves
198  // and are not required with the static_cast)
199  auto &mod = wrappers.module;
200  mod.attr("SOURCE_IO_NO_FOOTPRINTS") = static_cast<int>(SourceFitsFlags::SOURCE_IO_NO_FOOTPRINTS);
201  mod.attr("SOURCE_IO_NO_HEAVY_FOOTPRINTS") =
203 
204  auto clsSourceRecord = declareSourceRecord(wrappers);
205  auto clsSourceTable = declareSourceTable(wrappers);
206  auto clsSourceColumnView = declareSourceColumnView(wrappers);
207  auto clsSourceCatalog = table::python::declareSortedCatalog<SourceRecord>(wrappers, "Source");
208 
209  clsSourceRecord.attr("Table") = clsSourceTable;
210  clsSourceRecord.attr("ColumnView") = clsSourceColumnView;
211  clsSourceRecord.attr("Catalog") = clsSourceCatalog;
212  clsSourceTable.attr("Record") = clsSourceRecord;
213  clsSourceTable.attr("ColumnView") = clsSourceColumnView;
214  clsSourceTable.attr("Catalog") = clsSourceCatalog;
215  clsSourceCatalog.attr("Record") = clsSourceRecord;
216  clsSourceCatalog.attr("Table") = clsSourceTable;
217  clsSourceCatalog.attr("ColumnView") = clsSourceColumnView;
218 }
219 
220 } // namespace table
221 } // namespace afw
222 } // namespace lsst
pybind11::module module
The module object passed to the PYBIND11_MODULE block that contains this WrapperCollection.
Definition: python.h:448
A base class for image defects.
Read/write heavy footprints as non-heavy footprints.
Definition: Source.h:56
void wrapSource(WrapperCollection &wrappers)
Definition: _source.cc:192
Do not read/write footprints at all.
Definition: Source.h:55
A helper class for subdividing pybind11 module across multiple translation units (i.e.
Definition: python.h:242