LSSTApplications
18.1.0
LSSTDataManagementBasePackage
stack
Linux64
afw
18.1.0
python
lsst
afw
table
io
fits.cc
Go to the documentation of this file.
1
/*
2
* Developed for the LSST Data Management System.
3
* This product includes software developed by the LSST Project
4
* (https://www.lsst.org).
5
* See the COPYRIGHT file at the top-level directory of this distribution
6
* for details of code ownership.
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 GNU General Public License
19
* along with this program. If not, see <https://www.gnu.org/licenses/>.
20
*/
21
22
23
#include "pybind11/pybind11.h"
24
25
#include "
lsst/afw/table/io/FitsSchemaInputMapper.h
"
26
27
namespace
py
=
pybind11
;
28
using namespace
py::literals
;
29
30
namespace
lsst
{
31
namespace
afw
{
32
namespace
table {
33
namespace
io {
34
35
PYBIND11_MODULE
(
fits
, mod) {
36
37
mod.def(
"setPreppedRowsFactor"
, [](
std::size_t
n) { FitsSchemaInputMapper::PREPPED_ROWS_FACTOR = n; });
38
mod.def(
"getPreppedRowsFactor"
, []() {
return
FitsSchemaInputMapper::PREPPED_ROWS_FACTOR; });
39
40
}
41
42
}
43
}
44
}
45
}
// namespace lsst::afw::table::io
FitsSchemaInputMapper.h
pybind11
Definition:
_GenericMap.cc:40
PYBIND11_MODULE
PYBIND11_MODULE(fits, mod)
Definition:
fits.cc:190
lsst::afw
Definition:
imageAlgorithm.dox:1
std::size_t
fits
Fits * fits
Definition:
FitsWriter.cc:90
lsst
A base class for image defects.
Definition:
imageAlgorithm.dox:1
literals
Generated on Thu Aug 8 2019 20:20:05 for LSSTApplications by
1.8.13