VTK  9.3.0
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 
29 VTK_ABI_NAMESPACE_BEGIN
30 class vtkReebGraph;
31 
32 class VTKFILTERSREEBGRAPH_EXPORT vtkReebGraphToJoinSplitTreeFilter
34 {
35 public:
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 
60 protected:
63 
65 
67 
68  int FillInputPortInformation(int portNumber, vtkInformation*) override;
70 
71  int RequestData(vtkInformation* request, vtkInformationVector** inputVector,
72  vtkInformationVector* outputVector) override;
73 
74 private:
76  void operator=(const vtkReebGraphToJoinSplitTreeFilter&) = delete;
77 };
78 
79 VTK_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:38
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...
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.
static vtkReebGraphToJoinSplitTreeFilter * New()
int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector) override
This is called by the superclass.
Reeb graph computation for PL scalar fields.
Definition: vtkReebGraph.h:121
int vtkIdType
Definition: vtkType.h:315