VTK
vtkUnstructuredGridToReebGraphFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkUnstructuredGridToReebGraphFilter.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
26 #ifndef vtkUnstructuredGridToReebGraphFilter_h
27 #define vtkUnstructuredGridToReebGraphFilter_h
28 
29 #include "vtkFiltersReebGraphModule.h" // For export macro
31 
32 class vtkReebGraph;
33 
34 class VTKFILTERSREEBGRAPH_EXPORT vtkUnstructuredGridToReebGraphFilter :
36 {
37 public:
41  void PrintSelf(ostream& os, vtkIndent indent) override;
42 
44 
47  vtkSetMacro(FieldId, int);
48  vtkGetMacro(FieldId, int);
50 
52 
53 
54 protected:
57 
58  int FieldId;
59 
60  int FillInputPortInformation(int portNumber, vtkInformation *) override;
61  int FillOutputPortInformation(int, vtkInformation *) override;
62 
65  vtkInformationVector*) override;
66 
67 private:
69  void operator=(const vtkUnstructuredGridToReebGraphFilter&) = delete;
70 };
71 
72 #endif
vtkDirectedGraphAlgorithm
Superclass for algorithms that produce only directed graph as output.
Definition: vtkDirectedGraphAlgorithm.h:52
vtkDirectedGraphAlgorithm::FillInputPortInformation
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.
vtkDirectedGraphAlgorithm::New
static vtkDirectedGraphAlgorithm * New()
vtkInformationVector
Store zero or more vtkInformation instances.
Definition: vtkInformationVector.h:35
vtkDirectedGraphAlgorithm::FillOutputPortInformation
int FillOutputPortInformation(int port, vtkInformation *info) override
Fill the output port information objects for this algorithm.
vtkUnstructuredGridToReebGraphFilter
generate a Reeb graph from a scalar field defined on a vtkUnstructuredGrid.
Definition: vtkUnstructuredGridToReebGraphFilter.h:34
vtkReebGraph
Reeb graph computation for PL scalar fields.
Definition: vtkReebGraph.h:131
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:33
vtkDirectedGraphAlgorithm::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkInformation
Store vtkAlgorithm input/output information.
Definition: vtkInformation.h:80
vtkDirectedGraphAlgorithm.h
vtkDirectedGraphAlgorithm::RequestData
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
This is called by the superclass.
vtkDirectedGraphAlgorithm::GetOutput
vtkDirectedGraph * GetOutput()
Get the output data object for a port on this algorithm.
Definition: vtkDirectedGraphAlgorithm.h:69
vtkUnstructuredGridToReebGraphFilter::FieldId
int FieldId
Definition: vtkUnstructuredGridToReebGraphFilter.h:58