00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00046 #ifndef __vtkAreaContourSpectrumFilter_h
00047 #define __vtkAreaContourSpectrumFilter_h
00048
00049 #include "vtkDataObjectAlgorithm.h"
00050
00051 class vtkTable;
00052
00053 class VTK_GRAPHICS_EXPORT vtkAreaContourSpectrumFilter :
00054 public vtkDataObjectAlgorithm
00055 {
00056 public:
00057 static vtkAreaContourSpectrumFilter* New();
00058 vtkTypeMacro(vtkAreaContourSpectrumFilter, vtkDataObjectAlgorithm);
00059 void PrintSelf(ostream& os, vtkIndent indent);
00060
00062
00064 vtkSetMacro(ArcId, vtkIdType);
00065 vtkGetMacro(ArcId, vtkIdType);
00067
00069
00070 vtkSetMacro(NumberOfSamples, int);
00071 vtkGetMacro(NumberOfSamples, int);
00073
00075
00076 vtkSetMacro(FieldId, vtkIdType);
00077 vtkGetMacro(FieldId, vtkIdType);
00079
00080 vtkTable* GetOutput();
00081
00082 protected:
00083 vtkAreaContourSpectrumFilter();
00084 ~vtkAreaContourSpectrumFilter();
00085
00086 vtkIdType ArcId, FieldId;
00087 int NumberOfSamples;
00088
00089 int FillInputPortInformation(int portNumber, vtkInformation *);
00090 int FillOutputPortInformation(int portNumber, vtkInformation *info);
00091
00092 int RequestData(vtkInformation *request,
00093 vtkInformationVector **inputVector, vtkInformationVector *outputVector);
00094
00095 private:
00096 vtkAreaContourSpectrumFilter(const vtkAreaContourSpectrumFilter&);
00097 void operator=(const vtkAreaContourSpectrumFilter&);
00098 };
00099
00100 #endif