LSST Applications g0f08755f38+9522ef2f0f,g1653933729+a905cd61c3,g168dd56ebc+a905cd61c3,g1a2382251a+910d683904,g20f6ffc8e0+9522ef2f0f,g217e2c1bcf+f4af07de8a,g28da252d5a+26a25b978d,g2bbee38e9b+cc7bbd92cc,g2bc492864f+cc7bbd92cc,g32e5bea42b+de24d92311,g347aa1857d+cc7bbd92cc,g35bb328faa+a905cd61c3,g3a166c0a6a+cc7bbd92cc,g3bd4b5ce2c+02735527dc,g3e281a1b8c+2bff41ced5,g414038480c+4de324692b,g41af890bb2+4fc8c6ef01,g43bc871e57+d0d7cc457a,g78460c75b0+4ae99bb757,g80478fca09+615987a4d7,g82479be7b0+970d1d03ea,g8365541083+a905cd61c3,g858d7b2824+9522ef2f0f,g9125e01d80+a905cd61c3,ga5288a1d22+9ad990292e,gb58c049af0+84d1b6ec45,gc28159a63d+cc7bbd92cc,gc5452a3dca+b82ec7cc4c,gcab2d0539d+475d436cbd,gcf0d15dbbd+d816b8a730,gda6a2b7d83+d816b8a730,gdaeeff99f8+686ef0dd99,ge79ae78c31+cc7bbd92cc,gef2f8181fd+c1889b0e42,gf0baf85859+f9edac6842,gf1e97e5484+a55c27affc,gfa517265be+9522ef2f0f,gfa999e8aa5+d85414070d,w.2025.01
LSST Data Management Base Package
Loading...
Searching...
No Matches
_cameraGeom.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>
26namespace lsst {
27namespace afw {
28namespace cameraGeom {
29
37
38PYBIND11_MODULE(_cameraGeom, mod) {
39 lsst::cpputils::python::WrapperCollection wrappers(mod, "lsst.afw.cameraGeom");
40 wrapAmplifier(wrappers);
41 wrapDetectorCollection(wrappers);
42 wrapDetector(wrappers);
43 wrapCamera(wrappers);
44 wrapCameraSys(wrappers);
45 wrapOrientation(wrappers);
46 wrapTransformMap(wrappers);
47 wrappers.finish();
48}
49} // namespace cameraGeom
50} // namespace afw
51} // namespace lsst
A helper class for subdividing pybind11 module across multiple translation units (i....
Definition python.h:242
void finish()
Invoke all deferred wrapper-declaring callables.
Definition python.h:435
void wrapCameraSys(lsst::cpputils::python::WrapperCollection &)
Definition _cameraSys.cc:63
void wrapOrientation(lsst::cpputils::python::WrapperCollection &)
void wrapTransformMap(lsst::cpputils::python::WrapperCollection &)
void wrapCamera(lsst::cpputils::python::WrapperCollection &wrappers)
Definition _camera.cc:47
PYBIND11_MODULE(_cameraGeom, mod)
void wrapDetectorCollection(lsst::cpputils::python::WrapperCollection &)
void wrapDetector(lsst::cpputils::python::WrapperCollection &)
Definition _detector.cc:194
void wrapAmplifier(lsst::cpputils::python::WrapperCollection &wrappers)
Definition _amplifier.cc:43