VTK
vtkXMLUnstructuredGridReader.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkXMLUnstructuredGridReader.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 =========================================================================*/
35 #ifndef vtkXMLUnstructuredGridReader_h
36 #define vtkXMLUnstructuredGridReader_h
37 
38 #include "vtkIOXMLModule.h" // For export macro
40 
42 class vtkIdTypeArray;
43 
45 {
46 public:
48  void PrintSelf(ostream& os, vtkIndent indent) override;
50 
52 
55  vtkUnstructuredGrid *GetOutput();
56  vtkUnstructuredGrid *GetOutput(int idx);
58 
59 protected:
61  ~vtkXMLUnstructuredGridReader() override;
62 
63  const char* GetDataSetName() override;
64  void GetOutputUpdateExtent(int& piece, int& numberOfPieces, int& ghostLevel) override;
65  void SetupOutputTotals() override;
66  void SetupPieces(int numPieces) override;
67  void DestroyPieces() override;
68 
69  void SetupOutputData() override;
70  int ReadPiece(vtkXMLDataElement* ePiece) override;
71  void SetupNextPiece() override;
72  int ReadPieceData() override;
73 
74  // Read a data array whose tuples correspond to cells.
76  vtkAbstractArray* outArray) override;
77 
78  // Get the number of cells in the given piece. Valid after
79  // UpdateInformation.
80  vtkIdType GetNumberOfCellsInPiece(int piece) override;
81 
82  int FillOutputPortInformation(int, vtkInformation*) override;
83 
84  // The index of the cell in the output where the current piece
85  // begins.
87 
88  // The Cells element for each piece.
91 
93  unsigned long CellsOffset;
94 
95 private:
97  void operator=(const vtkXMLUnstructuredGridReader&) = delete;
98 };
99 
100 #endif
virtual const char * GetDataSetName()=0
Represents an XML element and those nested inside.
Store vtkAlgorithm input/output information.
Abstract superclass for all arrays.
virtual vtkIdType GetNumberOfCellsInPiece(int piece)=0
Superclass for unstructured data XML readers.
dynamic, self-adjusting array of vtkIdType
void SetupPieces(int numPieces) override
int vtkIdType
Definition: vtkType.h:347
virtual int FillOutputPortInformation(int port, vtkInformation *info)
Fill the output port information objects for this algorithm.
a simple class to control print indentation
Definition: vtkIndent.h:39
dataset represents arbitrary combinations of all possible cell types
void SetupOutputData() override
Read VTK XML UnstructuredGrid files.
virtual void GetOutputUpdateExtent(int &piece, int &numberOfPieces, int &ghostLevel)=0
static vtkAlgorithm * New()
virtual int ReadArrayForCells(vtkXMLDataElement *da, vtkAbstractArray *outArray)
int ReadPiece(vtkXMLDataElement *ePiece) override
void DestroyPieces() override
virtual void SetupOutputTotals()
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.