VTK  9.1.0
vtkVolumeContourSpectrumFilter.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkVolumeContourSpectrumFilter.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=========================================================================*/
44#ifndef vtkVolumeContourSpectrumFilter_h
45#define vtkVolumeContourSpectrumFilter_h
46
48#include "vtkFiltersGeneralModule.h" // For export macro
49
50class vtkReebGraph;
51class vtkTable;
52
53class VTKFILTERSGENERAL_EXPORT vtkVolumeContourSpectrumFilter : public vtkDataObjectAlgorithm
54{
55public:
58 void PrintSelf(ostream& os, vtkIndent indent) override;
59
61
65 vtkSetMacro(ArcId, vtkIdType);
66 vtkGetMacro(ArcId, vtkIdType);
68
70
74 vtkSetMacro(NumberOfSamples, int);
75 vtkGetMacro(NumberOfSamples, int);
77
79
83 vtkSetMacro(FieldId, vtkIdType);
84 vtkGetMacro(FieldId, vtkIdType);
86
88
89protected:
92
93 vtkIdType ArcId, FieldId;
95
96 int FillInputPortInformation(int portNumber, vtkInformation*) override;
97 int FillOutputPortInformation(int portNumber, vtkInformation* info) override;
98
99 int RequestData(vtkInformation* request, vtkInformationVector** inputVector,
100 vtkInformationVector* outputVector) override;
101
102private:
104 void operator=(const vtkVolumeContourSpectrumFilter&) = delete;
105};
106
107#endif
Superclass for algorithms that produce only data object as output.
a simple class to control print indentation
Definition: vtkIndent.h:113
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Reeb graph computation for PL scalar fields.
Definition: vtkReebGraph.h:132
A table, which contains similar-typed columns of data.
Definition: vtkTable.h:172
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
@ info
Definition: vtkX3D.h:382
int vtkIdType
Definition: vtkType.h:332