VTK  9.4.20250206
vtkExtractGhostCells.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
16#ifndef vtkExtractGhostCells_h
17#define vtkExtractGhostCells_h
18
19#include "vtkFiltersGeneralModule.h" // for export macros
21
22VTK_ABI_NAMESPACE_BEGIN
23class VTKFILTERSGENERAL_EXPORT vtkExtractGhostCells : public vtkUnstructuredGridAlgorithm
24{
25public:
28 void PrintSelf(ostream& os, vtkIndent indent) override;
29
31
34 vtkSetStringMacro(OutputGhostArrayName);
35 vtkGetStringMacro(OutputGhostArrayName);
37
38protected:
41
42 int FillInputPortInformation(int port, vtkInformation* info) override;
43
45
47
48private:
50 void operator=(const vtkExtractGhostCells&) = delete;
51};
52
53VTK_ABI_NAMESPACE_END
54#endif
Extracts ghost cells from the input and untag them (they become visible).
static vtkExtractGhostCells * New()
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
~vtkExtractGhostCells() override
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.
a simple class to control print indentation
Definition vtkIndent.h:108
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Superclass for algorithms that produce only unstructured grid as output.