LSSTApplications  19.0.0-10-g4a5fae6+19,20.0.0,20.0.0+1,20.0.0+2,20.0.0+3,20.0.0+5,20.0.0+6,20.0.0-1-g10df615+4,20.0.0-1-g253301a+2,20.0.0-1-g32a200e+4,20.0.0-1-g596936a+4,20.0.0-1-g8a53f90,20.0.0-1-gc96f8cb+5,20.0.0-1-gd1c87d7,20.0.0-13-gfbf2cf9+1,20.0.0-2-g92e20685+5,20.0.0-2-gec03fae,20.0.0-3-g082faa5,20.0.0-3-g2fa8bb8+1,20.0.0-3-ga9be0e7+3,20.0.0-4-gde602ef96+1,20.0.0-7-g180d0f2,20.0.0-8-g7eef53f7,w.2020.26
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
lsst::utils::python::addOutputOp
void addOutputOp(PyClass &cls, std::string const &method)
Add __str__ or __repr__ method implemented by operator<<.
Definition: python.h:87
python.h
lsst::afw::geom.transform.transformContinued.cls
cls
Definition: transformContinued.py:33
Frame.h
lsst::jointcal
Definition: Associations.h:49
lsst
A base class for image defects.
Definition: imageAlgorithm.dox:1
pybind11
Definition: _GenericMap.cc:40
lsst::meas::modelfit.psf.psfContinued.module
module
Definition: psfContinued.py:42
lsst::afw::cameraGeom::PYBIND11_MODULE
PYBIND11_MODULE(camera, mod)
Definition: camera.cc:133