VTK  9.3.20240423
vtkUnstructuredGridToReebGraphFilter.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
17#ifndef vtkUnstructuredGridToReebGraphFilter_h
18#define vtkUnstructuredGridToReebGraphFilter_h
19
21#include "vtkFiltersReebGraphModule.h" // For export macro
22
23VTK_ABI_NAMESPACE_BEGIN
24class vtkReebGraph;
25
26class VTKFILTERSREEBGRAPH_EXPORT vtkUnstructuredGridToReebGraphFilter
28{
29public:
32 void PrintSelf(ostream& os, vtkIndent indent) override;
33
35
38 vtkSetMacro(FieldId, int);
39 vtkGetMacro(FieldId, int);
41
43
44protected:
47
49
50 int FillInputPortInformation(int portNumber, vtkInformation*) override;
52
54
55private:
57 void operator=(const vtkUnstructuredGridToReebGraphFilter&) = delete;
58};
59
60VTK_ABI_NAMESPACE_END
61#endif
Superclass for algorithms that produce only directed graph as output.
a simple class to control print indentation
Definition vtkIndent.h:108
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Reeb graph computation for PL scalar fields.
generate a Reeb graph from a scalar field defined on a vtkUnstructuredGrid.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
static vtkUnstructuredGridToReebGraphFilter * New()
int FillOutputPortInformation(int, vtkInformation *) override
Fill the output port information objects for this algorithm.
int FillInputPortInformation(int portNumber, vtkInformation *) override
Fill the input port information objects for this algorithm.
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.