VTK  9.5.20250804
vtkVolumeContourSpectrumFilter.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
35#ifndef vtkVolumeContourSpectrumFilter_h
36#define vtkVolumeContourSpectrumFilter_h
37
39#include "vtkFiltersGeneralModule.h" // For export macro
40
41VTK_ABI_NAMESPACE_BEGIN
42class vtkReebGraph;
43class vtkTable;
44
45class VTKFILTERSGENERAL_EXPORT vtkVolumeContourSpectrumFilter : public vtkDataObjectAlgorithm
46{
47public:
50 void PrintSelf(ostream& os, vtkIndent indent) override;
51
53
57 vtkSetMacro(ArcId, vtkIdType);
58 vtkGetMacro(ArcId, vtkIdType);
60
62
66 vtkSetMacro(NumberOfSamples, int);
67 vtkGetMacro(NumberOfSamples, int);
69
71
75 vtkSetMacro(FieldId, vtkIdType);
76 vtkGetMacro(FieldId, vtkIdType);
78
80
81protected:
84
85 vtkIdType ArcId, FieldId;
87
88 int FillInputPortInformation(int portNumber, vtkInformation*) override;
89 int FillOutputPortInformation(int portNumber, vtkInformation* info) override;
90
91 int RequestData(vtkInformation* request, vtkInformationVector** inputVector,
92 vtkInformationVector* outputVector) override;
93
94private:
96 void operator=(const vtkVolumeContourSpectrumFilter&) = delete;
97};
98
99VTK_ABI_NAMESPACE_END
100#endif
Superclass for algorithms that produce only data object 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.
A table, which contains similar-typed columns of data.
Definition vtkTable.h:169
compute an approximation of the volume contour signature (evolution of the volume of the input tet-me...
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
~vtkVolumeContourSpectrumFilter() override
int FillInputPortInformation(int portNumber, vtkInformation *) override
Fill the input port information objects for this algorithm.
int FillOutputPortInformation(int portNumber, vtkInformation *info) override
Fill the output port information objects for this algorithm.
static vtkVolumeContourSpectrumFilter * New()
int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector) override
int vtkIdType
Definition vtkType.h:332