VTK  9.2.6
vtkDistributedDataFilter.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkDistributedDataFilter.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 Copyright (c) Sandia Corporation
17 See Copyright.txt or http://www.paraview.org/HTML/Copyright.html for details.
18----------------------------------------------------------------------------*/
19
34
35#ifndef vtkDistributedDataFilter_h
36#define vtkDistributedDataFilter_h
37
39#include "vtkFiltersParallelModule.h" // For export macro
40
41#include <vector> // for vector
42
43class vtkBSPCuts;
45class vtkPKdTree;
46
47class VTKFILTERSPARALLEL_EXPORT vtkDistributedDataFilter : public vtkDataObjectAlgorithm
48{
49public:
51
52 void PrintSelf(ostream& os, vtkIndent indent) override;
53
55
57
63
73
75
92
93 vtkBooleanMacro(RetainKdtree, int);
94 vtkGetMacro(RetainKdtree, int);
95 vtkSetMacro(RetainKdtree, int);
96
107
108 vtkBooleanMacro(IncludeAllIntersectingCells, int);
111
117
118 vtkBooleanMacro(ClipCells, int);
119 vtkGetMacro(ClipCells, int);
120 vtkSetMacro(ClipCells, int);
121
128
130
133 void SetBoundaryMode(int mode);
148
153
163
164 vtkBooleanMacro(UseMinimalMemory, int);
165 vtkGetMacro(UseMinimalMemory, int);
166 vtkSetMacro(UseMinimalMemory, int);
167
172 vtkGetMacro(MinimumGhostLevel, int);
173 vtkSetMacro(MinimumGhostLevel, int);
174
178
179 vtkBooleanMacro(Timing, int);
180 vtkSetMacro(Timing, int);
181 vtkGetMacro(Timing, int);
182
195 vtkBSPCuts* GetCuts() { return this->UserCuts; }
196 void SetCuts(vtkBSPCuts* cuts);
197
207 void SetUserRegionAssignments(const int* map, int numRegions);
208
209protected:
212
218 int FillInputPortInformation(int port, vtkInformation* info) override;
219
226
229
231 int MyId;
232
233 int* Target;
234 int* Source;
235
238
239 // User-adjustable minimum number of ghost levels.
241
242 // Actual number of ghost levels used during execution.
244
248
250
253
255
257
258 std::vector<int> UserRegionAssignments;
259
260private:
262 void operator=(const vtkDistributedDataFilter&) = delete;
263};
264#endif
This class represents an axis-aligned Binary Spatial Partitioning of a 3D space.
Definition vtkBSPCuts.h:45
void SetUserRegionAssignments(const int *map, int numRegions)
vtkBSPCuts doesn't have information about process assignments for the cuts.
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
Build a vtkUnstructuredGrid to store the input.
vtkMultiProcessController * Controller
~vtkDistributedDataFilter() override
int RequestInformation(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
vtkBSPCuts * GetCuts()
You can set the k-d tree decomposition, rather than have D3 compute it.
int RequestDataObject(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
Overridden to create the correct type of data output.
void SetBoundaryModeToAssignToAllIntersectingRegions()
Handling of ClipCells and IncludeAllIntersectingCells.
static vtkDistributedDataFilter * New()
int GetBoundaryMode()
Handling of ClipCells and IncludeAllIntersectingCells.
void SetBoundaryModeToSplitBoundaryCells()
Handling of ClipCells and IncludeAllIntersectingCells.
int RequestUpdateExtent(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
Ensure previous filters don't send up ghost cells.
vtkPKdTree * GetKdtree()
Get a pointer to the parallel k-d tree object.
void SetBoundaryModeToAssignToOneRegion()
Handling of ClipCells and IncludeAllIntersectingCells.
void SetCuts(vtkBSPCuts *cuts)
void SetBoundaryMode(int mode)
Handling of ClipCells and IncludeAllIntersectingCells.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.
void SetController(vtkMultiProcessController *c)
Set/Get the communicator object.
a simple class to control print indentation
Definition vtkIndent.h:34
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Multiprocessing communication superclass.
Build a k-d tree decomposition of a list of points.
Definition vtkPKdTree.h:58