LSSTApplications  20.0.0
LSSTDataManagementBasePackage
chi2.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/Chi2.h"
30 
31 namespace py = pybind11;
32 using namespace pybind11::literals;
33 
34 namespace lsst {
35 namespace jointcal {
36 namespace {
37 
38 void declareChi2(py::module &mod) {
39  py::class_<Chi2Statistic, std::shared_ptr<Chi2Statistic>> cls(mod, "Chi2Statistic");
40 
41  cls.def(py::init<>());
42 
43  utils::python::addOutputOp(cls, "__str__");
44 
45  cls.def_readwrite("chi2", &Chi2Statistic::chi2);
46  cls.def_readwrite("ndof", &Chi2Statistic::ndof);
47 }
48 
49 PYBIND11_MODULE(chi2, mod) { declareChi2(mod); }
50 } // namespace
51 } // namespace jointcal
52 } // 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
lsst::afw::geom.transform.transformContinued.cls
cls
Definition: transformContinued.py:33
Chi2.h
lsst::jointcal
Definition: Associations.h:49
lsst
A base class for image defects.
Definition: imageAlgorithm.dox:1
python.h
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