VTK  9.3.20240424
vtkPlot3DMetaReader.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2// SPDX-FileCopyrightText: Copyright (c) Kitware, Inc.
3// SPDX-License-Identifier: BSD-3-Clause
78#ifndef vtkPlot3DMetaReader_h
79#define vtkPlot3DMetaReader_h
80
81#include "vtkIOParallelModule.h" // For export macro
83
84#include "vtk_jsoncpp_fwd.h" // For forward declarations
85
86VTK_ABI_NAMESPACE_BEGIN
87struct vtkPlot3DMetaReaderInternals;
88
90
91class VTKIOPARALLEL_EXPORT vtkPlot3DMetaReader : public vtkMultiBlockDataSetAlgorithm
92{
93public:
96 void PrintSelf(ostream& os, vtkIndent indent) override;
97
99
106
107protected:
110
112 vtkInformationVector* outputVector) override;
114
115 char* FileName;
116
117 void SetAutoDetectFormat(Json::Value* value);
118 void SetByteOrder(Json::Value* value);
119 void SetPrecision(Json::Value* val);
120 void SetMultiGrid(Json::Value* val);
121 void SetFormat(Json::Value* val);
122 void SetBlanking(Json::Value* val);
123 void Set2D(Json::Value* val);
124 void SetR(Json::Value* val);
125 void SetGamma(Json::Value* val);
126 void SetFileNames(Json::Value* val);
127 void SetLanguage(Json::Value* val);
128 void AddFunctions(Json::Value* val);
129 void SetFunctionNames(Json::Value* val);
130
131private:
133 void operator=(const vtkPlot3DMetaReader&) = delete;
134
136 vtkPlot3DMetaReaderInternals* Internal;
137};
138
139VTK_ABI_NAMESPACE_END
140#endif
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.
reads meta-files points to PLOT3D files
void Set2D(Json::Value *val)
vtkSetFilePathMacro(FileName)
Set/Get the meta PLOT3D filename.
void SetFileNames(Json::Value *val)
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
void SetMultiGrid(Json::Value *val)
void SetPrecision(Json::Value *val)
void AddFunctions(Json::Value *val)
int RequestInformation(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector) override
This is called by the superclass.
void SetFormat(Json::Value *val)
void SetBlanking(Json::Value *val)
void SetAutoDetectFormat(Json::Value *value)
void SetGamma(Json::Value *val)
void SetFunctionNames(Json::Value *val)
void SetLanguage(Json::Value *val)
~vtkPlot3DMetaReader() override
vtkGetFilePathMacro(FileName)
Set/Get the meta PLOT3D filename.
void SetByteOrder(Json::Value *value)
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
void SetR(Json::Value *val)
static vtkPlot3DMetaReader * New()