LSST Applications  21.0.0+3c14b91618,21.0.0+9f51b1e3f7,21.0.0-1-ga51b5d4+6691386486,21.0.0-10-g2408eff+2abf8e6692,21.0.0-10-g560fb7b+4d6b2593e7,21.0.0-10-gcf60f90+3282c3fba3,21.0.0-15-g490e301a+3bb30e68ef,21.0.0-2-g103fe59+2768baa6eb,21.0.0-2-g1367e85+7f080822af,21.0.0-2-g45278ab+9f51b1e3f7,21.0.0-2-g5242d73+7f080822af,21.0.0-2-g7f82c8f+c804b2348a,21.0.0-2-g8f08a60+e6fd6d9ff9,21.0.0-2-ga326454+c804b2348a,21.0.0-2-gde069b7+66c51b65da,21.0.0-2-gecfae73+7b7e4bc850,21.0.0-2-gfc62afb+7f080822af,21.0.0-20-g09baf175d+b753e4a737,21.0.0-3-g357aad2+041fbde335,21.0.0-3-g4be5c26+7f080822af,21.0.0-3-g65f322c+5f9b799490,21.0.0-3-g7d9da8d+3c14b91618,21.0.0-3-gaa929c8+4d6b2593e7,21.0.0-3-ge02ed75+8a90696ee3,21.0.0-4-g3af6bfd+6a1ffca332,21.0.0-4-g591bb35+8a90696ee3,21.0.0-4-g88306b8+fb98652b4f,21.0.0-4-gccdca77+86bf7a300d,21.0.0-4-ge8a399c+2e6fe0c655,21.0.0-46-g880d6fab+d14224996b,21.0.0-6-g2d4f3f3+9f51b1e3f7,21.0.0-6-g4e60332+8a90696ee3,21.0.0-6-g8356267+828d7849ed,21.0.0-6-gb9875a0+49236cfe85,21.0.0-7-g98eecf7+3609eddee2,21.0.0-8-g79a436f+a6e44ac77b,21.0.0-9-g2abd0ea+f5d0ba4120,master-gac4afde19b+8a90696ee3,w.2021.09
LSST Data Management Base Package
python.h
Go to the documentation of this file.
1 // -*- lsst-c++ -*-
2 /*
3  * LSST Data Management System
4  * See COPYRIGHT file at the top of the source tree.
5  *
6  * This product includes software developed by the
7  * LSST Project (http://www.lsst.org/).
8  *
9  * This program is free software: you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation, either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the LSST License Statement and
20  * the GNU General Public License along with this program. If not,
21  * see <http://www.lsstcorp.org/LegalNotices/>.
22  */
23 
24 #ifndef LSST_AFW_TABLE_IO_PYTHON_H
25 #define LSST_AFW_TABLE_IO_PYTHON_H
26 
27 #include "pybind11/pybind11.h"
28 
29 #include <memory>
30 #include <string>
31 
32 #include "lsst/afw/fits.h"
34 
35 namespace py = pybind11;
36 using namespace py::literals;
37 
38 namespace lsst {
39 namespace afw {
40 namespace table {
41 namespace io {
42 namespace python {
43 
54 template <typename Class, typename... Args>
55 void addPersistableMethods(pybind11::class_<Class, Args...> &cls) {
56  cls.def_static("readFits",
58  "fileName"_a, "hdu"_a = fits::DEFAULT_HDU);
59  cls.def_static(
60  "readFits",
62  "manager"_a, "hdu"_a = fits::DEFAULT_HDU);
63  cls.def("writeFits", (void (Class::*)(std::string const &, std::string const &) const) & Class::writeFits,
64  "fileName"_a, "mode"_a = "w");
65  cls.def("writeFits",
66  (void (Class::*)(fits::MemFileManager &, std::string const &) const) & Class::writeFits,
67  "manager"_a, "mode"_a = "w");
68  cls.def("isPersistable", &Class::isPersistable);
69 }
70 } // namespace python
71 } // namespace io
72 } // namespace table
73 } // namespace afw
74 } // namespace lsst
75 
76 #endif
Lifetime-management for memory that goes into FITS memory files.
Definition: fits.h:121
A CRTP facade class for subclasses of Persistable.
Definition: Persistable.h:176
const int DEFAULT_HDU
Specify that the default HDU should be read.
Definition: fitsDefaults.h:18
void addPersistableMethods(pybind11::class_< Class, Args... > &cls)
Add table::io::Persistable and PersistableFacade methods to the pybind11 wrapper for a class.
Definition: python.h:55
def writeFits(filename, stamp_ims, metadata, write_mask, write_variance)
Definition: stamps.py:38
A base class for image defects.