11#include "openPMD/ChunkInfo.hpp"
12#include "openPMD/Iteration.hpp"
13#include "openPMD/Mesh.hpp"
14#include "openPMD/ParticlePatches.hpp"
15#include "openPMD/ParticleSpecies.hpp"
16#include "openPMD/Record.hpp"
17#include "openPMD/RecordComponent.hpp"
18#include "openPMD/Series.hpp"
19#include "openPMD/backend/BaseRecord.hpp"
20#include "openPMD/backend/BaseRecordComponent.hpp"
21#include "openPMD/backend/MeshRecordComponent.hpp"
22#include "openPMD/backend/PatchRecord.hpp"
23#include "openPMD/backend/PatchRecordComponent.hpp"
25#include <pybind11/gil.h>
26#include <pybind11/numpy.h>
27#include <pybind11/pybind11.h>
28#include <pybind11/stl.h>
29#include <pybind11/stl_bind.h>
31#if openPMD_USE_FILESYSTEM_HEADER
32#include <pybind11/stl/filesystem.h>
37using PyVecChunkInfo = std::vector<openPMD::ChunkInfo>;
40PYBIND11_MAKE_OPAQUE(PyVecChunkInfo)
42PYBIND11_MAKE_OPAQUE(openPMD::ChunkTable)
43PYBIND11_MAKE_OPAQUE(openPMD::chunk_assignment::Assignment)
47namespace py = pybind11;
63PYBIND11_MAKE_OPAQUE(PyIterationContainer)
64PYBIND11_MAKE_OPAQUE(PyMeshContainer)
65PYBIND11_MAKE_OPAQUE(PyPartContainer)
66PYBIND11_MAKE_OPAQUE(PyPatchContainer)
67PYBIND11_MAKE_OPAQUE(PyRecordContainer)
68PYBIND11_MAKE_OPAQUE(PyPatchRecordContainer)
69PYBIND11_MAKE_OPAQUE(PyRecordComponentContainer)
70PYBIND11_MAKE_OPAQUE(PyMeshRecordComponentContainer)
71PYBIND11_MAKE_OPAQUE(PyPatchRecordComponentContainer)
72PYBIND11_MAKE_OPAQUE(PyBaseRecordRecordComponent)
73PYBIND11_MAKE_OPAQUE(PyBaseRecordPatchRecordComponent)
Base class for any type of record (e.g.
Definition BaseRecord.hpp:182
Map-like container that enforces openPMD requirements and handles IO.
Definition Container.hpp:104
internal::SeriesData::IterationsContainer_t IterationsContainer_t
Type for a container of Iterations indexed by IterationIndex_t.
Definition Series.hpp:387
Public definitions of openPMD-api.
Definition Date.cpp:29
Represents the meta info around a chunk in a dataset.
Definition ChunkInfo.hpp:45
Represents the meta info around a chunk that has been written by some data producing application.
Definition ChunkInfo.hpp:72
Return type for partial chunk assignment strategies.
Definition ChunkInfo.hpp:137