VTK
vtkTecplotReader.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkTecplotReader.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 =========================================================================*/
15 
16 /*****************************************************************************
17 *
18 * Copyright (c) 2000 - 2009, Lawrence Livermore National Security, LLC
19 * Produced at the Lawrence Livermore National Laboratory
20 * LLNL-CODE-400124
21 * All rights reserved.
22 *
23 * This file was adapted from the ASCII Tecplot reader of VisIt. For details,
24 * see https://visit.llnl.gov/. The full copyright notice is contained in the
25 * file COPYRIGHT located at the root of the VisIt distribution or at
26 * http://www.llnl.gov/visit/copyright.html.
27 *
28 *****************************************************************************/
29 
79 #ifndef vtkTecplotReader_h
80 #define vtkTecplotReader_h
81 
82 #include "vtkIOGeometryModule.h" // For export macro
84 
85 #include <vector> // STL Header; Required for vector
86 #include <string> // STL Header; Required for string
87 
88 class vtkPoints;
89 class vtkCellData;
90 class vtkPointData;
91 class vtkCallbackCommand;
95 class vtkTecplotReaderInternal;
96 
97 class VTKIOGEOMETRY_EXPORT vtkTecplotReader : public vtkMultiBlockDataSetAlgorithm
98 {
99 public:
100  static vtkTecplotReader * New();
102  void PrintSelf( ostream & os, vtkIndent indent ) override;
103 
105 
108  vtkGetMacro( NumberOfVariables, int );
110 
114  void SetFileName( const char * fileName );
115 
119  const char * GetDataTitle();
120 
124  int GetNumberOfBlocks();
125 
130  const char * GetBlockName( int blockIdx );
131 
136  int GetNumberOfDataAttributes();
137 
142  const char * GetDataAttributeName( int attrIndx );
143 
149  int IsDataAttributeCellBased( const char * attrName );
150 
156  int IsDataAttributeCellBased( int attrIndx );
157 
161  int GetNumberOfDataArrays();
162 
166  const char * GetDataArrayName( int arrayIdx );
167 
171  int GetDataArrayStatus( const char * arayName );
172 
177  void SetDataArrayStatus( const char * arayName, int bChecked );
178 
179 protected:
181  ~vtkTecplotReader() override;
182 
183  int FillOutputPortInformation( int port, vtkInformation * info ) override;
184  int RequestInformation( vtkInformation * request,
185  vtkInformationVector ** inputVector,
186  vtkInformationVector * outputVector ) override;
187  int RequestData
189 
193  static void SelectionModifiedCallback
194  ( vtkObject *, unsigned long, void * tpReader, void * );
195 
201  void Init();
202 
206  void GetDataArraysList();
207 
212  void ReadFile( vtkMultiBlockDataSet * multZone);
213 
220  void GetArraysFromBlockPackingZone( int numNodes, int numCells,
221  vtkPoints * theNodes, vtkPointData * nodeData, vtkCellData * cellData );
222 
231  void GetArraysFromPointPackingZone
232  ( int numNodes, vtkPoints * theNodes, vtkPointData * nodeData );
233 
241  void GetStructuredGridFromBlockPackingZone( int iDimSize, int jDimSize,
242  int kDimSize, int zoneIndx, const char * zoneName,
243  vtkMultiBlockDataSet * multZone );
244 
252  void GetStructuredGridFromPointPackingZone( int iDimSize, int jDimSize,
253  int kDimSize, int zoneIndx, const char * zoneName,
254  vtkMultiBlockDataSet * multZone );
255 
263  void GetUnstructuredGridFromBlockPackingZone( int numNodes, int numCells,
264  const char * cellType, int zoneIndx, const char * zoneName,
265  vtkMultiBlockDataSet * multZone );
266 
274  void GetUnstructuredGridFromPointPackingZone( int numNodes, int numCells,
275  const char * cellType,int zoneIndx, const char * zoneName,
276  vtkMultiBlockDataSet * multZone );
277 
282  void GetUnstructuredGridCells( int numberCells, const char * cellTypeStr,
283  vtkUnstructuredGrid * unstrctGrid );
284 
286  char * FileName;
289  vtkTecplotReaderInternal * Internal;
290 
292  std::vector< int > CellBased;
293  std::vector< std::string > ZoneNames;
294  std::vector< std::string > Variables;
295 
296 private:
297 
298  vtkTecplotReader( const vtkTecplotReader & ) = delete;
299  void operator = ( const vtkTecplotReader & ) = delete;
300 };
301 
302 #endif
vtkCallbackCommand * SelectionObserver
abstract base class for most VTK objects
Definition: vtkObject.h:59
represent and manipulate point attribute data
Definition: vtkPointData.h:37
Store vtkAlgorithm input/output information.
vtkDataArraySelection * DataArraySelection
represent and manipulate cell attribute data
Definition: vtkCellData.h:38
Superclass for algorithms that produce only vtkMultiBlockDataSet as output.
virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
This is called by the superclass.
std::vector< int > CellBased
int FillOutputPortInformation(int port, vtkInformation *info) override
Fill the output port information objects for this algorithm.
static vtkMultiBlockDataSetAlgorithm * New()
supports function callbacks
a simple class to control print indentation
Definition: vtkIndent.h:39
Store on/off settings for data arrays for a vtkSource.
dataset represents arbitrary combinations of all possible cell types
vtkTecplotReaderInternal * Internal
std::vector< std::string > ZoneNames
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
std::string DataTitle
Composite dataset that organizes datasets into blocks.
Store zero or more vtkInformation instances.
A concrete class to read an ASCII Tecplot file.
represent and manipulate 3D points
Definition: vtkPoints.h:39
std::vector< std::string > Variables
virtual int RequestInformation(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
This is called by the superclass.