forked from openPMD/openPMD-api
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathRecord.cpp
More file actions
83 lines (74 loc) · 3.04 KB
/
Record.cpp
File metadata and controls
83 lines (74 loc) · 3.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/* Copyright 2018-2021 Axel Huebl
*
* This file is part of openPMD-api.
*
* openPMD-api is free software: you can redistribute it and/or modify
* it under the terms of of either the GNU General Public License or
* the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* openPMD-api is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License and the GNU Lesser General Public License
* for more details.
*
* You should have received a copy of the GNU General Public License
* and the GNU Lesser General Public License along with openPMD-api.
* If not, see <http://www.gnu.org/licenses/>.
*/
#include "openPMD/Record.hpp"
#include "openPMD/RecordComponent.hpp"
#include "openPMD/backend/Attributable.hpp"
#include "openPMD/backend/BaseRecord.hpp"
#include "openPMD/binding/python/Common.hpp"
#include "openPMD/binding/python/Container.H"
#include "openPMD/binding/python/Pickle.hpp"
#include "openPMD/binding/python/UnitDimension.hpp"
#include <string>
#include <vector>
void init_Record(py::module &m)
{
auto py_r_cnt = declare_container<PyRecordContainer, Attributable>(
m, "Record_Container");
py::class_<Record, BaseRecord<RecordComponent> > cl(m, "Record");
cl.def(py::init<Record const &>())
.def(
"__repr__",
[](Record const &r) {
return "<openPMD.Record of " + std::to_string(r.size()) +
" component(s) and " + std::to_string(r.numAttributes()) +
" attribute(s)>";
})
.def_property(
"unit_dimension",
&Record::unitDimension,
&Record::setUnitDimension,
python::doc_unit_dimension)
.def_property(
"time_offset",
&Record::timeOffset<float>,
&Record::setTimeOffset<float>)
.def_property(
"time_offset",
&Record::timeOffset<double>,
&Record::setTimeOffset<double>)
.def_property(
"time_offset",
&Record::timeOffset<long double>,
&Record::setTimeOffset<long double>)
// TODO remove in future versions (deprecated)
.def("set_unit_dimension", &Record::setUnitDimension)
.def("set_time_offset", &Record::setTimeOffset<float>)
.def("set_time_offset", &Record::setTimeOffset<double>)
.def("set_time_offset", &Record::setTimeOffset<long double>);
add_pickle(
cl, [](openPMD::Series series, std::vector<std::string> const &group) {
uint64_t const n_it = std::stoull(group.at(1));
auto res = series.iterations[n_it].open().particles[group.at(3)]
[group.at(4)];
return internal::makeOwning(res, std::move(series));
});
finalize_container<PyRecordContainer>(py_r_cnt);
}