VTK  9.3.20240420
vtkReebGraphToJoinSplitTreeFilter.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
23#ifndef vtkReebGraphToJoinSplitTreeFilter_h
24#define vtkReebGraphToJoinSplitTreeFilter_h
25
27#include "vtkFiltersReebGraphModule.h" // For export macro
28
29VTK_ABI_NAMESPACE_BEGIN
30class vtkReebGraph;
31
32class VTKFILTERSREEBGRAPH_EXPORT vtkReebGraphToJoinSplitTreeFilter
34{
35public:
38 void PrintSelf(ostream& os, vtkIndent indent) override;
39
41
45 vtkSetMacro(IsSplitTree, bool);
46 vtkGetMacro(IsSplitTree, bool);
48
50
54 vtkSetMacro(FieldId, vtkIdType);
55 vtkGetMacro(FieldId, vtkIdType);
57
59
60protected:
63
65
67
68 int FillInputPortInformation(int portNumber, vtkInformation*) override;
70
71 int RequestData(vtkInformation* request, vtkInformationVector** inputVector,
72 vtkInformationVector* outputVector) override;
73
74private:
76 void operator=(const vtkReebGraphToJoinSplitTreeFilter&) = delete;
77};
78
79VTK_ABI_NAMESPACE_END
80#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.
converts a given Reeb graph either to a join tree or a split tree (respectively the connectivity of t...
static vtkReebGraphToJoinSplitTreeFilter * New()
int FillInputPortInformation(int portNumber, vtkInformation *) override
Fill the input port information objects for this algorithm.
int FillOutputPortInformation(int, vtkInformation *) override
Fill the output 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.
int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector) override
This is called by the superclass.
Reeb graph computation for PL scalar fields.
int vtkIdType
Definition vtkType.h:315