VTK
vtkExtractTemporalFieldData.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkExtractTemporalFieldData.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 =========================================================================*/
31 #ifndef vtkExtractTemporalFieldData_h
32 #define vtkExtractTemporalFieldData_h
33 
34 #include "vtkFiltersExtractionModule.h" // For export macro
35 #include "vtkTableAlgorithm.h"
36 
37 class vtkDataSet;
38 class vtkTable;
40 
42 {
43 public:
46  void PrintSelf(ostream& os, vtkIndent indent);
47 
49 
50  vtkGetMacro(NumberOfTimeSteps,int);
52 
53 protected:
56 
57  virtual int ProcessRequest(vtkInformation*,
60 
61  virtual int RequestInformation(vtkInformation* request,
62  vtkInformationVector** inputVector,
63  vtkInformationVector* outputVector);
64  virtual int RequestData(vtkInformation* request,
65  vtkInformationVector** inputVector,
66  vtkInformationVector* outputVector);
67 
68 
70 
72 
74  void CopyDataToOutput(vtkInformation* inInfo,
75  vtkDataSet *input, vtkTable *output);
77 
79 
80 private:
81  vtkExtractTemporalFieldData(const vtkExtractTemporalFieldData&); // Not implemented.
82  void operator=(const vtkExtractTemporalFieldData&); // Not implemented.
83 };
84 
85 #endif
86 
87 
88 
void PrintSelf(ostream &os, vtkIndent indent)
static vtkTableAlgorithm * New()
Store vtkAlgorithm input/output information.
virtual int RequestInformation(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
abstract class to specify dataset behavior
Definition: vtkDataSet.h:61
a simple class to control print indentation
Definition: vtkIndent.h:38
virtual int FillInputPortInformation(int port, vtkInformation *info)
#define VTKFILTERSEXTRACTION_EXPORT
represent and manipulate attribute data in a dataset
A table, which contains similar-typed columns of data.
Definition: vtkTable.h:67
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
Superclass for algorithms that produce only vtkTables as output.
Store zero or more vtkInformation instances.
virtual int ProcessRequest(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
Extract temporal arrays from input field data.