GridFormat 0.2.1
I/O-Library for grid-like data structures
Loading...
Searching...
No Matches
pvts_reader.hpp
Go to the documentation of this file.
1// SPDX-FileCopyrightText: 2022-2023 Dennis Gläser <dennis.glaeser@iws.uni-stuttgart.de>
2// SPDX-License-Identifier: MIT
8#ifndef GRIDFORMAT_VTK_PVTS_READER_HPP_
9#define GRIDFORMAT_VTK_PVTS_READER_HPP_
10
13
14namespace GridFormat {
15
21class PVTSReader : public VTK::PXMLStructuredGridReader<VTSReader> {
23
24 public:
26 : ParentType("PStructuredGrid")
27 {}
28
29 explicit PVTSReader(const NullCommunicator&)
30 : ParentType("PStructuredGrid")
31 {}
32
33 template<Concepts::Communicator C>
34 explicit PVTSReader(const C& comm)
35 : ParentType("PStructuredGrid", comm)
36 {}
37
38 private:
39 std::string _name() const override {
40 return "PVTSReader";
41 }
42};
43
44} // namespace GridFormat
45
46#endif // GRIDFORMAT_VTK_PVTS_READER_HPP_
Reader for .pvts file format.
Definition: pvts_reader.hpp:21
Base class for readers of parallel vtk-xml file formats for structured grids.
Definition: pxml_reader.hpp:294