VTK
|
00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: $RCSfile$ 00005 00006 Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen 00007 All rights reserved. 00008 See Copyright.txt or http://www.kitware.com/Copyright.htm for details. 00009 00010 This software is distributed WITHOUT ANY WARRANTY; without even 00011 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 00012 PURPOSE. See the above copyright notice for more information. 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&); // Not implemented. 00097 void operator=(const vtkAreaContourSpectrumFilter&); // Not implemented. 00098 }; 00099 00100 #endif