lsst.jointcal  master-g59ec7209dd
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
ccdImage.cc
Go to the documentation of this file.
1 /*
2  * LSST Data Management System
3  *
4  * This product includes software developed by the
5  * LSST Project (http://www.lsst.org/).
6  * See the COPYRIGHT file
7  *
8  * This program is free software: you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation, either version 3 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the LSST License Statement and
19  * the GNU General Public License along with this program. If not,
20  * see <https://www.lsstcorp.org/LegalNotices/>.
21  */
22 
23 #include "pybind11/pybind11.h"
24 #include "pybind11/stl.h"
25 
26 #include "lsst/jointcal/CcdImage.h"
27 
28 namespace py = pybind11;
29 using namespace pybind11::literals;
30 
31 namespace lsst {
32 namespace jointcal {
33 namespace {
34 
35 void declareCcdImage(py::module &mod) {
36  py::class_<CcdImage, std::shared_ptr<CcdImage>> cls(mod, "CcdImage");
37 
38  // Not wrapping constructor: CcdImages are always built inside Associations.
39  // cls.def(py::init<>());
40 
41  cls.def("getPhotoCalib", &CcdImage::getPhotoCalib);
42 
43  cls.def("getBoresightRaDec", &CcdImage::getBoresightRaDec);
44  cls.def_property_readonly("boresightRaDec", &CcdImage::getBoresightRaDec);
45 
46  cls.def("getCcdId", &CcdImage::getCcdId);
47  cls.def_property_readonly("ccdId", &CcdImage::getCcdId);
48 
49  cls.def("getImageFrame", &CcdImage::getImageFrame, py::return_value_policy::reference_internal);
50  cls.def_property_readonly("imageFrame", &CcdImage::getImageFrame,
51  py::return_value_policy::reference_internal);
52 
53  cls.def("getName", &CcdImage::getName);
54  cls.def_property_readonly("name", &CcdImage::getName);
55 
56  cls.def("getVisit", &CcdImage::getVisit);
57  cls.def_property_readonly("visit", &CcdImage::getVisit);
58 
59  cls.def("getCommonTangentPoint", &CcdImage::getCommonTangentPoint,
60  py::return_value_policy::reference_internal);
61  cls.def("setCommonTangentPoint", &CcdImage::setCommonTangentPoint);
62  cls.def_property("commonTangentPoint", &CcdImage::getCommonTangentPoint, &CcdImage::setCommonTangentPoint,
63  py::return_value_policy::reference_internal);
64 }
65 
66 PYBIND11_PLUGIN(ccdImage) {
67  py::module mod("ccdImage");
68 
69  declareCcdImage(mod);
70 
71  return mod.ptr();
72 }
73 } // namespace
74 } // namespace jointcal
75 } // namespace lsst