BUGFIX: Illegal use of uninitialised value (backport)
[foam-extend-3.2.git] / applications / utilities / postProcessing / dataConversion / foamToVTK / vtkTopo.H
blobcbfdec4b70bedbce8f0fb8bb5bca6c41b2d2733f
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright held by original author
6      \\/     M anipulation  |
7 -------------------------------------------------------------------------------
8 License
9     This file is part of OpenFOAM.
11     OpenFOAM is free software; you can redistribute it and/or modify it
12     under the terms of the GNU General Public License as published by the
13     Free Software Foundation; either version 2 of the License, or (at your
14     option) any later version.
16     OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
17     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
19     for more details.
21     You should have received a copy of the GNU General Public License
22     along with OpenFOAM; if not, write to the Free Software Foundation,
23     Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25 Class
26     Foam::vtkTopo
28 Description
29     Polyhedral cell decomposition for VTK.
31 SourceFiles
32     vtkTopo.C
34 \*---------------------------------------------------------------------------*/
36 #ifndef vtkTopo_H
37 #define vtkTopo_H
39 #include "labelList.H"
41 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
43 namespace Foam
46 // Forward declaration of classes
47 class polyMesh;
49 /*---------------------------------------------------------------------------*\
50                            Class vtkTopo Declaration
51 \*---------------------------------------------------------------------------*/
53 class vtkTopo
55     // Private data
57         const polyMesh& mesh_;
59         //- Vertices per cell (including added cells) in vtk ordering
60         labelListList vertLabels_;
62         //- Cell types (including added cells) in vtk numbering
63         labelList cellTypes_;
65         labelList addPointCellLabels_;
67         labelList superCells_;
70     // Private Member Functions
72         //- Disallow default bitwise copy construct
73         vtkTopo(const vtkTopo&);
75         //- Disallow default bitwise assignment
76         void operator=(const vtkTopo&);
79 public:
81    // Public static data
83         // this must be consistent with the enumeration in "vtkCell.H"
84         enum vtkTypes
85         {
86             VTK_TRIANGLE   = 5,
87             VTK_POLYGON    = 7,
88             VTK_QUAD       = 9,
90             VTK_TETRA      = 10,
91             VTK_PYRAMID    = 14,
92             VTK_WEDGE      = 13,
93             VTK_HEXAHEDRON = 12,
94         };
96     // Constructors
98         //- Construct from components
99         vtkTopo(const polyMesh& mesh);
102     // Member Functions
104         // Access
106             const labelListList& vertLabels() const
107             {
108                 return vertLabels_;
109             }
111             const labelList& cellTypes() const
112             {
113                 return cellTypes_;
114             }
116             const labelList& addPointCellLabels() const
117             {
118                 return addPointCellLabels_;
119             }
121             const labelList& superCells() const
122             {
123                 return superCells_;
124             }
128 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
130 } // End namespace Foam
132 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
134 #endif
136 // ************************************************************************* //