VTK  9.2.6
vtkEnSightGoldReader.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkEnSightGoldReader.h
5
6 Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7 All rights reserved.
8 See Copyright.txt or http://www.kitware.com/Copyright.htm 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=========================================================================*/
43#ifndef vtkEnSightGoldReader_h
44#define vtkEnSightGoldReader_h
45
46#include "vtkEnSightReader.h"
47#include "vtkIOEnSightModule.h" // For export macro
48
50
51class VTKIOENSIGHT_EXPORT vtkEnSightGoldReader : public vtkEnSightReader
52{
53public:
56 void PrintSelf(ostream& os, vtkIndent indent) override;
57
58protected:
61
65 int ReadGeometryFile(const char* fileName, int timeStep, vtkMultiBlockDataSet* output) override;
66
72 const char* fileName, int timeStep, vtkMultiBlockDataSet* output) override;
73
79 int ReadScalarsPerNode(const char* fileName, const char* description, int timeStep,
80 vtkMultiBlockDataSet* output, int measured = 0, int numberOfComponents = 1,
81 int component = 0) override;
82
87 int ReadVectorsPerNode(const char* fileName, const char* description, int timeStep,
88 vtkMultiBlockDataSet* output, int measured = 0) override;
89
94 int ReadAsymmetricTensorsPerNode(const char* fileName, const char* description, int timeStep,
95 vtkMultiBlockDataSet* output) override;
96
101 int ReadTensorsPerNode(const char* fileName, const char* description, int timeStep,
102 vtkMultiBlockDataSet* output) override;
103
109 int ReadScalarsPerElement(const char* fileName, const char* description, int timeStep,
110 vtkMultiBlockDataSet* output, int numberOfComponents = 1, int component = 0) override;
111
116 int ReadVectorsPerElement(const char* fileName, const char* description, int timeStep,
117 vtkMultiBlockDataSet* output) override;
118
123 int ReadAsymmetricTensorsPerElement(const char* fileName, const char* description, int timeStep,
124 vtkMultiBlockDataSet* output) override;
125
130 int ReadTensorsPerElement(const char* fileName, const char* description, int timeStep,
131 vtkMultiBlockDataSet* output) override;
132
139 int partId, char line[256], const char* name, vtkMultiBlockDataSet* output) override;
140
146 int partId, char line[256], const char* name, vtkMultiBlockDataSet* output) override;
147
153 int partId, char line[256], const char* name, vtkMultiBlockDataSet* output);
154
160 int partId, char line[256], const char* name, vtkMultiBlockDataSet* output);
161
164
165 class FileOffsetMapInternal;
166 FileOffsetMapInternal* FileOffsets;
167
168private:
170 void operator=(const vtkEnSightGoldReader&) = delete;
171
176 bool OpenVariableFile(const char* fname, const char* variableType);
177
182 bool SkipToTimeStep(const char* fileName, int timeStep);
183
184 class UndefPartialHelper;
185 friend class UndefPartialHelper;
186};
187
188#endif
class to read EnSight Gold files
~vtkEnSightGoldReader() override
int ReadTensorsPerElement(const char *fileName, const char *description, int timeStep, vtkMultiBlockDataSet *output) override
Read tensors per element for this dataset.
int ReadTensorsPerNode(const char *fileName, const char *description, int timeStep, vtkMultiBlockDataSet *output) override
Read tensors per node for this dataset.
int CreateUnstructuredGridOutput(int partId, char line[256], const char *name, vtkMultiBlockDataSet *output) override
Read an unstructured part (partId) from the geometry file and create a vtkUnstructuredGrid output.
int ReadAsymmetricTensorsPerNode(const char *fileName, const char *description, int timeStep, vtkMultiBlockDataSet *output) override
Read asimmetric tensors per node for this dataset.
int ReadScalarsPerElement(const char *fileName, const char *description, int timeStep, vtkMultiBlockDataSet *output, int numberOfComponents=1, int component=0) override
Read scalars per element for this dataset.
int ReadVectorsPerNode(const char *fileName, const char *description, int timeStep, vtkMultiBlockDataSet *output, int measured=0) override
Read vectors per node for this dataset.
int ReadScalarsPerNode(const char *fileName, const char *description, int timeStep, vtkMultiBlockDataSet *output, int measured=0, int numberOfComponents=1, int component=0) override
Read scalars per node for this dataset.
int ReadMeasuredGeometryFile(const char *fileName, int timeStep, vtkMultiBlockDataSet *output) override
Read the measured geometry file.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
FileOffsetMapInternal * FileOffsets
int CreateImageDataOutput(int partId, char line[256], const char *name, vtkMultiBlockDataSet *output)
Read a structured part from the geometry file and create a vtkImageData output.
static vtkEnSightGoldReader * New()
int ReadGeometryFile(const char *fileName, int timeStep, vtkMultiBlockDataSet *output) override
Read the geometry file.
int CreateStructuredGridOutput(int partId, char line[256], const char *name, vtkMultiBlockDataSet *output) override
Read a structured part from the geometry file and create a vtkStructuredGrid output.
int CreateRectilinearGridOutput(int partId, char line[256], const char *name, vtkMultiBlockDataSet *output)
Read a structured part from the geometry file and create a vtkRectilinearGrid output.
int ReadVectorsPerElement(const char *fileName, const char *description, int timeStep, vtkMultiBlockDataSet *output) override
Read vectors per element for this dataset.
int ReadAsymmetricTensorsPerElement(const char *fileName, const char *description, int timeStep, vtkMultiBlockDataSet *output) override
Read asymmetric tensors per element for this dataset.
superclass for EnSight file readers
a simple class to control print indentation
Definition: vtkIndent.h:40
Composite dataset that organizes datasets into blocks.