LSSTApplications  16.0-10-g4f78f78+15,16.0-10-gc1446dd+41,16.0-11-g09ed895+1,16.0-12-g4477fe7+1,16.0-14-g0a28612+1,16.0-14-g6c7ed55+15,16.0-15-ga29f190+1,16.0-16-g89065d4+13,16.0-16-gcf62dc0+9,16.0-16-gd8e3590+15,16.0-16-ge6a35c8+5,16.0-17-g7e0e4ff+9,16.0-19-gb830ed4e+15,16.0-2-g0febb12+21,16.0-2-g9d5294e+60,16.0-2-ga8830df+5,16.0-23-gcb65559+3,16.0-24-gc1c7f52+8,16.0-3-ge00e371+20,16.0-33-g83da4dfe+2,16.0-4-g18f3627+4,16.0-4-g5f3a788+20,16.0-4-ga3eb747+10,16.0-4-gabf74b7+15,16.0-4-gade8416+8,16.0-4-gb13d127+5,16.0-5-g6a53317+20,16.0-5-gb3f8a4b+73,16.0-5-gef99c9f+11,16.0-6-g9321be7+4,16.0-6-gcbc7b31+18,16.0-6-gf49912c+15,16.0-62-g7ad45169d+1,16.0-7-g9645df7+1,16.0-7-gd2eeba5+27,16.0-8-g21fd5fe+15,16.0-8-g3a9f023+11,16.0-8-ge230541+2,16.0-9-g85d1a16+15,master-g72da5ad0b5+5,w.2018.46
LSSTDataManagementBasePackage
frame.cc
Go to the documentation of this file.
1 // -*- LSST-C++ -*-
2 /*
3  * This file is part of jointcal.
4  *
5  * Developed for the LSST Data Management System.
6  * This product includes software developed by the LSST Project
7  * (https://www.lsst.org).
8  * See the COPYRIGHT file at the top-level directory of this distribution
9  * for details of code ownership.
10  *
11  * This program is free software: you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation, either version 3 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program. If not, see <https://www.gnu.org/licenses/>.
23  */
24 
25 #include "pybind11/pybind11.h"
26 
27 #include "lsst/utils/python.h"
28 
29 #include "lsst/jointcal/Frame.h"
30 
31 namespace py = pybind11;
32 using namespace pybind11::literals;
33 
34 namespace lsst {
35 namespace jointcal {
36 namespace {
37 
38 void declareFrame(py::module &mod) {
39  py::class_<Frame, std::shared_ptr<Frame>> cls(mod, "Frame");
40 
41  cls.def(py::init<Point const &, Point const &>(), "lowerLeft"_a, "upperRight"_a);
42 
43  utils::python::addOutputOp(cls, "__str__");
44 }
45 
46 PYBIND11_MODULE(frame, mod) { declareFrame(mod); }
47 } // namespace
48 } // namespace jointcal
49 } // namespace lsst
void addOutputOp(PyClass &cls, std::string const &method)
Add __str__ or __repr__ method implemented by operator<<.
Definition: python.h:87
PYBIND11_MODULE(camera, mod)
Definition: camera.cc:34
A base class for image defects.
Definition: cameraGeom.dox:3