VTK
/Users/kitware/Dashboards/MyTests/VTK_BLD_Release_docs/Utilities/Doxygen/dox/Filters/Extraction/vtkExtractTemporalFieldData.h
Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    vtkExtractTemporalFieldData.h
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 =========================================================================*/
00031 #ifndef vtkExtractTemporalFieldData_h
00032 #define vtkExtractTemporalFieldData_h
00033 
00034 #include "vtkFiltersExtractionModule.h" // For export macro
00035 #include "vtkTableAlgorithm.h"
00036 
00037 class vtkDataSet;
00038 class vtkTable;
00039 class vtkDataSetAttributes;
00040 
00041 class VTKFILTERSEXTRACTION_EXPORT vtkExtractTemporalFieldData : public vtkTableAlgorithm
00042 {
00043 public:
00044   static vtkExtractTemporalFieldData *New();
00045   vtkTypeMacro(vtkExtractTemporalFieldData,vtkTableAlgorithm);
00046   void PrintSelf(ostream& os, vtkIndent indent);
00047 
00049 
00050   vtkGetMacro(NumberOfTimeSteps,int);
00052 
00053 protected:
00054   vtkExtractTemporalFieldData();
00055   ~vtkExtractTemporalFieldData();
00056 
00057   virtual int ProcessRequest(vtkInformation*,
00058                              vtkInformationVector**,
00059                              vtkInformationVector*);
00060 
00061   virtual int RequestInformation(vtkInformation* request,
00062                                  vtkInformationVector** inputVector,
00063                                  vtkInformationVector* outputVector);
00064   virtual int RequestData(vtkInformation* request,
00065                           vtkInformationVector** inputVector,
00066                           vtkInformationVector* outputVector);
00067 
00068 
00069   virtual int FillInputPortInformation(int port, vtkInformation* info);
00070 
00072 
00074   void CopyDataToOutput(vtkInformation* inInfo,
00075     vtkDataSet *input, vtkTable *output);
00077 
00078   int NumberOfTimeSteps;
00079 
00080 private:
00081   vtkExtractTemporalFieldData(const vtkExtractTemporalFieldData&);  // Not implemented.
00082   void operator=(const vtkExtractTemporalFieldData&);  // Not implemented.
00083 };
00084 
00085 #endif
00086 
00087 
00088