LSSTApplications  20.0.0
LSSTDataManagementBasePackage
relationship.cc
Go to the documentation of this file.
1 /*
2  * LSST Data Management System
3  * See COPYRIGHT file at the top of the source tree.
4  *
5  * This product includes software developed by the
6  * LSST Project (http://www.lsst.org/).
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 #include "pybind11/pybind11.h"
23 
25 
26 namespace py = pybind11;
27 using namespace pybind11::literals;
28 
29 namespace lsst {
30 namespace sphgeom {
31 namespace {
32 
33 PYBIND11_MODULE(relationship, mod) {
34  mod.attr("DISJOINT") = py::cast(DISJOINT.to_ulong());
35  mod.attr("INTERSECTS") = py::cast(INTERSECTS.to_ulong());
36  mod.attr("CONTAINS") = py::cast(CONTAINS.to_ulong());
37  mod.attr("WITHIN") = py::cast(WITHIN.to_ulong());
38 
39  mod.def("invert", &invert, "relationship"_a);
40 }
41 
42 } // <anonymous>
43 } // sphgeom
44 } // lsst
lsst
A base class for image defects.
Definition: imageAlgorithm.dox:1
relationship.h
pybind11
Definition: _GenericMap.cc:40
lsst::afw::cameraGeom::PYBIND11_MODULE
PYBIND11_MODULE(camera, mod)
Definition: camera.cc:133
lsst::sphgeom::invert
Relationship invert(Relationship r)
Given the relationship between two sets A and B (i.e.
Definition: Relationship.h:55