VTK  9.2.6
vtkAreaContourSpectrumFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkAreaContourSpectrumFilter.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 =========================================================================*/
47 #ifndef vtkAreaContourSpectrumFilter_h
48 #define vtkAreaContourSpectrumFilter_h
49 
50 #include "vtkDataObjectAlgorithm.h"
51 #include "vtkFiltersGeneralModule.h" // For export macro
52 
53 class vtkTable;
54 
55 class VTKFILTERSGENERAL_EXPORT vtkAreaContourSpectrumFilter : public vtkDataObjectAlgorithm
56 {
57 public:
60  void PrintSelf(ostream& os, vtkIndent indent) override;
61 
63 
67  vtkSetMacro(ArcId, vtkIdType);
68  vtkGetMacro(ArcId, vtkIdType);
70 
72 
76  vtkSetMacro(NumberOfSamples, int);
77  vtkGetMacro(NumberOfSamples, int);
79 
81 
85  vtkSetMacro(FieldId, vtkIdType);
86  vtkGetMacro(FieldId, vtkIdType);
88 
90 
91 protected:
93  ~vtkAreaContourSpectrumFilter() override;
94 
97 
98  int FillInputPortInformation(int portNumber, vtkInformation*) override;
99  int FillOutputPortInformation(int portNumber, vtkInformation* info) override;
100 
101  int RequestData(vtkInformation* request, vtkInformationVector** inputVector,
102  vtkInformationVector* outputVector) override;
103 
104 private:
106  void operator=(const vtkAreaContourSpectrumFilter&) = delete;
107 };
108 
109 #endif
vtkDataObject * GetOutput()
Get the output data object for a port on this algorithm.
Store vtkAlgorithm input/output information.
static vtkDataObjectAlgorithm * New()
int vtkIdType
Definition: vtkType.h:332
int FillOutputPortInformation(int port, vtkInformation *info) override
Fill the output port information objects for this algorithm.
compute an approximation of the area contour signature (evolution of the area of the input surface al...
a simple class to control print indentation
Definition: vtkIndent.h:39
Superclass for algorithms that produce only data object as output.
A table, which contains similar-typed columns of data.
Definition: vtkTable.h:73
virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
Store zero or more vtkInformation instances.
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input 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.