VTK  9.3.0
vtkRemoveGhosts.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2// SPDX-License-Identifier: BSD-3-Clause
3
16#ifndef vtkRemoveGhosts_h
17#define vtkRemoveGhosts_h
18
19#include "vtkFiltersParallelModule.h" // For export macro
21
22VTK_ABI_NAMESPACE_BEGIN
23class vtkPolyData;
25
26class VTKFILTERSPARALLEL_EXPORT vtkRemoveGhosts : public vtkPassInputTypeAlgorithm
27{
28public:
30 void PrintSelf(ostream& os, vtkIndent indent) override;
31
33
34protected:
36 ~vtkRemoveGhosts() override;
37
40
41 // see algorithm for more info
42 int FillInputPortInformation(int port, vtkInformation* info) override;
43
44private:
45 vtkRemoveGhosts(const vtkRemoveGhosts&) = delete;
46 void operator=(const vtkRemoveGhosts&) = delete;
47};
48
49VTK_ABI_NAMESPACE_END
50#endif //_vtkRemoveGhosts_h
a simple class to control print indentation
Definition vtkIndent.h:29
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Superclass for algorithms that produce output of the same type as input.
concrete dataset represents vertices, lines, polygons, and triangle strips
Definition vtkPolyData.h:80
Remove ghost points, cells and arrays.
int RequestUpdateExtent(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called within ProcessRequest when each filter in the pipeline decides what portion of its inp...
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called within ProcessRequest when a request asks the algorithm to do its work.
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
static vtkRemoveGhosts * New()
~vtkRemoveGhosts() override
dynamic, self-adjusting array of unsigned char