VTK
vtkPlot3DMetaReader.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: ParaView
4  Module: vtkPlot3DMetaReader.h
5 
6  Copyright (c) Kitware, Inc.
7  All rights reserved.
8  See Copyright.txt or http://www.paraview.org/HTML/Copyright.html for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
79 #ifndef vtkPlot3DMetaReader_h
80 #define vtkPlot3DMetaReader_h
81 
82 #include "vtkIOParallelModule.h" // For export macro
84 
85 struct vtkPlot3DMetaReaderInternals;
86 
88 
89 namespace Json
90 {
91  class Value;
92 }
93 
94 class VTKIOPARALLEL_EXPORT vtkPlot3DMetaReader : public vtkMultiBlockDataSetAlgorithm
95 {
96 public:
99  void PrintSelf(ostream& os, vtkIndent indent);
100 
102 
106  vtkSetStringMacro(FileName);
107  vtkGetStringMacro(FileName);
109 
110 protected:
113 
114  virtual int RequestInformation(vtkInformation* request,
115  vtkInformationVector** inputVector,
116  vtkInformationVector* outputVector);
120 
121 
122  char* FileName;
123 
124  void SetAutoDetectFormat(Json::Value* value);
125  void SetByteOrder(Json::Value* value);
126  void SetPrecision(Json::Value* val);
127  void SetMultiGrid(Json::Value* val);
128  void SetFormat(Json::Value* val);
129  void SetBlanking(Json::Value* val);
130  void Set2D(Json::Value* val);
131  void SetR(Json::Value* val);
132  void SetGamma(Json::Value* val);
133  void SetFileNames(Json::Value* val);
134  void SetLanguage(Json::Value* val);
135  void AddFunctions(Json::Value* val);
136 
137 private:
138  vtkPlot3DMetaReader(const vtkPlot3DMetaReader&) VTK_DELETE_FUNCTION;
139  void operator=(const vtkPlot3DMetaReader&) VTK_DELETE_FUNCTION;
140 
142  vtkPlot3DMetaReaderInternals* Internal;
143 };
144 
145 #endif
vtkPlot3DMetaReader
reads meta-files points to PLOT3D files
Definition: vtkPlot3DMetaReader.h:95
vtkPlot3DMetaReader::FileName
char * FileName
Definition: vtkPlot3DMetaReader.h:122
vtkX3D::value
@ value
Definition: vtkX3D.h:220
vtkPlot3DMetaReader::SetPrecision
void SetPrecision(Json::Value *val)
vtkPlot3DMetaReader::SetMultiGrid
void SetMultiGrid(Json::Value *val)
vtkInformationVector
Store zero or more vtkInformation instances.
Definition: vtkInformationVector.h:42
vtkPlot3DMetaReader::RequestData
virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
This is called by the superclass.
vtkPlot3DMetaReader::AddFunctions
void AddFunctions(Json::Value *val)
vtkPlot3DMetaReader::SetByteOrder
void SetByteOrder(Json::Value *value)
vtkPlot3DMetaReader::RequestInformation
virtual int RequestInformation(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
This is called by the superclass.
vtkPlot3DMetaReader::New
static vtkPlot3DMetaReader * New()
vtkPlot3DMetaReader::SetFileNames
void SetFileNames(Json::Value *val)
vtkMultiBlockPLOT3DReader
read PLOT3D data files
Definition: vtkMultiBlockPLOT3DReader.h:107
Json
Definition: vtkPlot3DMetaReader.h:90
vtkPlot3DMetaReader::SetAutoDetectFormat
void SetAutoDetectFormat(Json::Value *value)
vtkPlot3DMetaReader::SetFormat
void SetFormat(Json::Value *val)
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:40
vtkMultiBlockDataSetAlgorithm.h
vtkGetStringMacro
vtkGetStringMacro(ExtensionsString)
Returns a string listing all available extensions.
vtkInformation
Store vtkAlgorithm input/output information.
Definition: vtkInformation.h:87
vtkPlot3DMetaReader::Set2D
void Set2D(Json::Value *val)
vtkPlot3DMetaReader::SetLanguage
void SetLanguage(Json::Value *val)
vtkPlot3DMetaReader::~vtkPlot3DMetaReader
~vtkPlot3DMetaReader()
vtkPlot3DMetaReader::SetGamma
void SetGamma(Json::Value *val)
vtkPlot3DMetaReader::SetBlanking
void SetBlanking(Json::Value *val)
vtkPlot3DMetaReader::SetR
void SetR(Json::Value *val)
vtkPlot3DMetaReader::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent)
Methods invoked by print to print information about the object including superclasses.
vtkPlot3DMetaReader::vtkPlot3DMetaReader
vtkPlot3DMetaReader()
vtkMultiBlockDataSetAlgorithm
Superclass for algorithms that produce only vtkMultiBlockDataSet as output.
Definition: vtkMultiBlockDataSetAlgorithm.h:33