VTK  9.4.20241117
vtkADIOS2VTXReader.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2// SPDX-License-Identifier: BSD-3-Clause
3
4/*
5 * vtkADIOS2VTXReader.h public facing class
6 * enables reading adios2 bp files using the
7 * VTK ADIOS2 Readers (VTX) developed
8 * at Oak Ridge National Laboratory
9 *
10 * Created on: May 1, 2019
11 * Author: William F Godoy godoywf@ornl.gov
12 */
13
14#ifndef vtkADIOS2VTXReader_h
15#define vtkADIOS2VTXReader_h
16
17#include <memory> // std::unique_ptr
18
19#include "vtkIOADIOS2Module.h" // For export macro
21
22// forward declaring to keep it private
23namespace vtx
24{
25VTK_ABI_NAMESPACE_BEGIN
27VTK_ABI_NAMESPACE_END
28}
29
30VTK_ABI_NAMESPACE_BEGIN
31
32class vtkIndent;
33class vtkInformation;
34class vtkInformationvector;
35
36class VTKIOADIOS2_EXPORT vtkADIOS2VTXReader : public vtkMultiBlockDataSetAlgorithm
37{
38public:
41 void PrintSelf(ostream& os, vtkIndent indent) override;
42
45
46protected:
49
51 void operator=(const vtkADIOS2VTXReader&) = delete;
52
54 vtkInformation*, vtkInformationVector**, vtkInformationVector* outputVector) override;
56 vtkInformation*, vtkInformationVector**, vtkInformationVector* outputVector) override;
58 vtkInformation*, vtkInformationVector**, vtkInformationVector* outputVector) override;
59
60private:
61 char* FileName;
62 std::unique_ptr<vtx::VTXSchemaManager> SchemaManager;
63};
64
65VTK_ABI_NAMESPACE_END
66#endif /* vtkADIOS2VTXReader_h */
void operator=(const vtkADIOS2VTXReader &)=delete
int RequestInformation(vtkInformation *, vtkInformationVector **, vtkInformationVector *outputVector) override
This is called by the superclass.
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *outputVector) override
This is called by the superclass.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkADIOS2VTXReader(const vtkADIOS2VTXReader &)=delete
vtkGetFilePathMacro(FileName)
static vtkADIOS2VTXReader * New()
int RequestUpdateExtent(vtkInformation *, vtkInformationVector **, vtkInformationVector *outputVector) override
This is called by the superclass.
vtkSetFilePathMacro(FileName)
~vtkADIOS2VTXReader() override
a simple class to control print indentation
Definition vtkIndent.h:108
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Superclass for algorithms that produce only vtkMultiBlockDataSet as output.