VTK
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 "vtkFiltersGeneralModule.h" // For export macro
51 #include "vtkDataObjectAlgorithm.h"
52 
53 class vtkTable;
54 
55 class VTKFILTERSGENERAL_EXPORT vtkAreaContourSpectrumFilter :
57 {
58 public:
61  void PrintSelf(ostream& os, vtkIndent indent) VTK_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 
92 protected:
94  ~vtkAreaContourSpectrumFilter() VTK_OVERRIDE;
95 
96  vtkIdType ArcId, FieldId;
97  int NumberOfSamples;
98 
99  int FillInputPortInformation(int portNumber, vtkInformation *) VTK_OVERRIDE;
100  int FillOutputPortInformation(int portNumber, vtkInformation *info) VTK_OVERRIDE;
101 
102  int RequestData(vtkInformation *request,
103  vtkInformationVector **inputVector, vtkInformationVector *outputVector) VTK_OVERRIDE;
104 
105 private:
107  void operator=(const vtkAreaContourSpectrumFilter&) VTK_DELETE_FUNCTION;
108 };
109 
110 #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:287
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
vtkSetMacro(IgnoreDriverBugs, bool)
When set known driver bugs are ignored during driver feature detection.
Superclass for algorithms that produce only data object as output.
A table, which contains similar-typed columns of data.
Definition: vtkTable.h:68
Store zero or more vtkInformation instances.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.