VTK  9.2.6
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=========================================================================*/
46
47#ifndef vtkVolumeContourSpectrumFilter_h
48#define vtkVolumeContourSpectrumFilter_h
49
51#include "vtkFiltersGeneralModule.h" // For export macro
52
53class vtkReebGraph;
54class vtkTable;
55
56class VTKFILTERSGENERAL_EXPORT vtkVolumeContourSpectrumFilter : public vtkDataObjectAlgorithm
57{
58public:
61 void PrintSelf(ostream& os, vtkIndent indent) override;
62
64
68 vtkSetMacro(ArcId, vtkIdType);
69 vtkGetMacro(ArcId, vtkIdType);
71
73
77 vtkSetMacro(NumberOfSamples, int);
78 vtkGetMacro(NumberOfSamples, int);
80
82
86 vtkSetMacro(FieldId, vtkIdType);
87 vtkGetMacro(FieldId, vtkIdType);
89
91
92protected:
95
98
99 int FillInputPortInformation(int portNumber, vtkInformation*) override;
100 int FillOutputPortInformation(int portNumber, vtkInformation* info) override;
101
103 vtkInformationVector* outputVector) override;
104
105private:
107 void operator=(const vtkVolumeContourSpectrumFilter&) = delete;
108};
109
110#endif
a simple class to control print indentation
Definition vtkIndent.h:40
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:74
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