LSSTApplications  18.1.0
LSSTDataManagementBasePackage
aliasMap.cc
Go to the documentation of this file.
1 /*
2  * LSST Data Management System
3  * Copyright 2008-2017 AURA/LSST.
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 
23 #include "pybind11/pybind11.h"
24 
26 
27 namespace py = pybind11;
28 using namespace pybind11::literals;
29 
30 namespace lsst {
31 namespace afw {
32 namespace table {
33 namespace {
34 
35 using PyAliasMap = py::class_<AliasMap, std::shared_ptr<AliasMap>>;
36 
37 PYBIND11_MODULE(aliasMap, mod) {
38  PyAliasMap cls(mod, "AliasMap");
39 
40  cls.def(py::init<>());
41  cls.def(py::init<AliasMap const &>());
42 
43  cls.def("__len__", &AliasMap::size);
44  cls.def("empty", &AliasMap::empty);
45  cls.def("apply", &AliasMap::apply, "name"_a);
46  cls.def("get", &AliasMap::get, "alias"_a);
47  cls.def("__getitem__", &AliasMap::get, "alias"_a);
48  cls.def("set", &AliasMap::set, "alias"_a, "target"_a);
49  cls.def("__setitem__", &AliasMap::set);
50  cls.def("erase", &AliasMap::erase, "alias"_a);
51  cls.def("__delitem__", &AliasMap::erase, "alias"_a);
52  cls.def("__eq__", [](AliasMap &self, AliasMap &other) { return self == other; });
53  cls.def("__ne__", [](AliasMap &self, AliasMap &other) { return self != other; });
54  cls.def("contains", &AliasMap::contains, "other"_a);
55  cls.def("__contains__", &AliasMap::contains);
56  cls.def("items", [](AliasMap &self) { return py::make_iterator(self.begin(), self.end()); },
57  py::keep_alive<0, 1>());
58 }
59 }
60 }
61 }
62 } // namespace lsst::afw::table::<anonymous>
bool contains(VertexIterator const begin, VertexIterator const end, UnitVector3d const &v)
def erase(frame=None)
Definition: ds9.py:97
PYBIND11_MODULE(camera, mod)
Definition: camera.cc:34
daf::base::PropertySet * set
Definition: fits.cc:884
A base class for image defects.
T begin(T... args)
ItemVariant const * other
Definition: Schema.cc:56
int end