VTK  9.2.6
vtkUnstructuredGridGhostCellsGenerator.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkUnstructuredGridGhostCellsGenerator.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 
32 #ifndef vtkUnstructuredGridGhostCellsGenerator_h
33 #define vtkUnstructuredGridGhostCellsGenerator_h
34 
35 #include "vtkDeprecation.h" // For VTK_DEPRECATED_IN_9_1_0
36 #include "vtkFiltersParallelModule.h" // For export macro
38 
42 
43 class VTK_DEPRECATED_IN_9_1_0("Use vtkGhostCellsGenerator instead") VTKFILTERSPARALLEL_EXPORT
45 {
47 
48 public:
49  void PrintSelf(ostream& os, vtkIndent indent) override;
50 
52 
54 
58  vtkSetMacro(UseGlobalPointIds, bool);
59  vtkGetMacro(UseGlobalPointIds, bool);
60  vtkBooleanMacro(UseGlobalPointIds, bool);
62 
64 
68  vtkSetStringMacro(GlobalPointIdsArrayName);
69  vtkGetStringMacro(GlobalPointIdsArrayName);
71 
73 
81  vtkSetMacro(HasGlobalCellIds, bool);
82  vtkGetMacro(HasGlobalCellIds, bool);
83  vtkBooleanMacro(HasGlobalCellIds, bool);
85 
87 
91  vtkSetStringMacro(GlobalCellIdsArrayName);
92  vtkGetStringMacro(GlobalCellIdsArrayName);
94 
96 
102  vtkSetMacro(BuildIfRequired, bool);
103  vtkGetMacro(BuildIfRequired, bool);
104  vtkBooleanMacro(BuildIfRequired, bool);
106 
108 
115  vtkSetClampMacro(MinimumNumberOfGhostLevels, int, 1, VTK_INT_MAX);
116  vtkGetMacro(MinimumNumberOfGhostLevels, int);
118 
119 protected:
122 
124  vtkInformationVector* outputVector) override;
125 
127 
134 
135 private:
137  void operator=(const vtkUnstructuredGridGhostCellsGenerator&) = delete;
138 };
139 
140 #endif
141 
142 // VTK-HeaderTest-Exclude: vtkUnstructuredGridGhostCellsGenerator.h
#define VTK_DEPRECATED_IN_9_1_0(reason)
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
This is called by the superclass.
Store vtkAlgorithm input/output information.
#define VTK_INT_MAX
Definition: vtkType.h:155
static vtkUnstructuredGridAlgorithm * New()
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
Computes ghost cells on vtkCompositeDataSet inputs.
a simple class to control print indentation
Definition: vtkIndent.h:39
dataset represents arbitrary combinations of all possible cell types
Superclass for algorithms that produce only unstructured grid as output.
Builds ghost cells for a distributed unstructured grid dataset.
Store zero or more vtkInformation instances.
virtual int RequestUpdateExtent(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
This is called by the superclass.
dataset represents arbitrary combinations of all possible cell types.
Multiprocessing communication superclass.