VTK
vtkStructuredImplicitConnectivity.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkStructuredImplicitConnectivity.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 =========================================================================*/
42 #ifndef vtkStructuredImplicitConnectivity_h
43 #define vtkStructuredImplicitConnectivity_h
44 
45 #include "vtkFiltersParallelMPIModule.h" // For export macro
46 #include "vtkObject.h"
47 
48 // Forward declarations
49 class vtkDataArray;
50 class vtkImageData;
51 class vtkMPIController;
53 class vtkPointData;
54 class vtkPoints;
55 class vtkRectilinearGrid;
56 class vtkStructuredGrid;
57 
58 namespace vtk
59 {
60 namespace detail
61 {
62 
63 class CommunicationManager;
64 struct DomainMetaData;
65 struct StructuredGrid;
66 
67 } // END namespace detail
68 } // END namespace vtk
69 
70 class VTKFILTERSPARALLELMPI_EXPORT vtkStructuredImplicitConnectivity :
71  public vtkObject
72 {
73 public:
75  void PrintSelf(ostream& os, vtkIndent indent) override;
77 
84  void SetWholeExtent(int wholeExt[6]);
85 
86  // \brief Registers the structured grid dataset belonging to this process.
87  // \param gridID the ID of the grid in this rank.
88  // \param extent the [imin,imax,jmin,jmax,kmin,kmax] of the grid.
89  // \param gridPnts pointer to the points of the grid (nullptr for uniform grid).
90  // \param pointData pointer to the node-centered fields of the grid.
91  // \pre gridID >= 0. The code uses values of gridID < -1 as flag internally.
92  // \pre vtkStructuredExtent::Smaller(extent,wholeExtent) == true.
93  // \note A rank with no or an empty grid, should not call this method.
94  void RegisterGrid(
95  const int gridID,
96  int extent[6],
97  vtkPoints* gridPnts,
98  vtkPointData* pointData
99  );
100 
101  // \brief Registers the rectilinear grid dataset belonging to this process.
102  // \param gridID the ID of the in this rank.
103  // \param extent the [imin,imax,jmin,jmax,kmin,kmax] of the grid.
104  // \param xcoords the x-coordinates array of the rectilinear grid.
105  // \param ycoords the y-coordinates array of the rectilinear grid.
106  // \param zcoords the z-coordinates array of the rectilinear grid.
107  // \param pointData pointer to the node-centered fields of the grid.
108  // \pre gridID >= 0. The code uses values of gridID < -1 as flag internally.
109  // \pre vtkStructuredExtent::Smaller(extent,wholeExtent) == true.
110  // \note A rank with no or an empty grid, should not call this method.
111  void RegisterRectilinearGrid(
112  const int gridID,
113  int extent[6],
114  vtkDataArray* xcoords,
115  vtkDataArray* ycoords,
116  vtkDataArray* zcoords,
117  vtkPointData* pointData
118  );
119 
126  void EstablishConnectivity();
127 
132  bool HasImplicitConnectivity();
133 
141  void ExchangeData();
142 
148  void GetOutputStructuredGrid(const int gridID, vtkStructuredGrid* grid);
149 
155  void GetOutputImageData(const int gridID, vtkImageData* grid);
156 
162  void GetOutputRectilinearGrid(const int gridID, vtkRectilinearGrid* grid);
163 
164 protected:
167 
169 
170  vtk::detail::DomainMetaData* DomainInfo;
171  vtk::detail::StructuredGrid* InputGrid;
172  vtk::detail::StructuredGrid* OutputGrid;
173  vtk::detail::CommunicationManager* CommManager;
174 
178  bool GlobalDataDescriptionMatch();
179 
183  void PackData(int ext[6], vtkMultiProcessStream& bytestream);
184 
188  void UnPackData(unsigned char* buffer, unsigned int size);
189 
193  void AllocateBuffers(const int dim);
194 
198  void ComputeNeighbors();
199 
203  void ConstructOutput();
204 
209  void GrowGrid(const int dim);
210 
216  void UpdateNeighborList(const int dim);
217 
221  void GetGlobalImplicitConnectivityState();
222 
228  void ExchangeExtents();
229 
230 private:
232  void operator=(const vtkStructuredImplicitConnectivity&) = delete;
233 };
234 #endif
a dataset that is topologically regular with variable spacing in the three coordinate directions ...
abstract base class for most VTK objects
Definition: vtkObject.h:59
represent and manipulate point attribute data
Definition: vtkPointData.h:37
stream used to pass data across processes using vtkMultiProcessController.
vtk::detail::CommunicationManager * CommManager
a distributed structured dataset that is implicitly connected among partitions without abutting...
a simple class to control print indentation
Definition: vtkIndent.h:39
topologically and geometrically regular array of data
Definition: vtkImageData.h:45
abstract superclass for arrays of numeric data
Definition: vtkDataArray.h:54
Process communication using MPI.
topologically regular array of data
represent and manipulate 3D points
Definition: vtkPoints.h:39