VTK
vtkTemporalInterpolator.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkTemporalInterpolator.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 =========================================================================*/
57 #ifndef vtkTemporalInterpolator_h
58 #define vtkTemporalInterpolator_h
59 
60 #include "vtkFiltersHybridModule.h" // For export macro
62 
63 class vtkDataSet;
65 {
66 public:
67  static vtkTemporalInterpolator *New();
69  void PrintSelf(ostream& os, vtkIndent indent);
70 
72 
79  vtkSetMacro(DiscreteTimeStepInterval, double);
80  vtkGetMacro(DiscreteTimeStepInterval, double);
82 
84 
91  vtkSetMacro(ResampleFactor, int);
92  vtkGetMacro(ResampleFactor, int);
94 
96 
98  vtkSetMacro(CacheData, bool);
99  vtkGetMacro(CacheData, bool);
101 
102 protected:
105 
106 
109 
111  virtual int FillOutputPortInformation(int vtkNotUsed(port), vtkInformation* info);
112 
113 
114  virtual int RequestDataObject(vtkInformation *,
117 
118  virtual int RequestUpdateExtent(vtkInformation *,
121  virtual int RequestInformation(vtkInformation *,
124 
125  virtual int RequestData(vtkInformation *,
128 
130 
132  vtkDataObject *InterpolateDataObject(vtkDataObject *in1,
133  vtkDataObject *in2,
134  double ratio);
136 
138 
141  virtual vtkDataSet *InterpolateDataSet(vtkDataSet *in1,
142  vtkDataSet *in2,
143  double ratio);
145 
147 
149  virtual vtkDataArray *InterpolateDataArray(double ratio,
150  vtkDataArray **arrays,
151  vtkIdType N);
153 
156  virtual bool VerifyArrays(vtkDataArray **arrays, int N);
157 
158  // internally used : Ratio is {0,1} between two time steps
159  // DeltaT is time between current 2 steps.
160  // These are only valid when 2 time steps are interpolated
161  // Higher order schemes will require changes to the API
162  double Ratio;
163  double DeltaT;
164  double Tfrac;
165 
166 private:
167  vtkTemporalInterpolator(const vtkTemporalInterpolator&); // Not implemented.
168  void operator=(const vtkTemporalInterpolator&); // Not implemented.
169 };
170 
171 
172 
173 #endif
174 
175 
176 
Store vtkAlgorithm input/output information.
abstract class to specify dataset behavior
Definition: vtkDataSet.h:61
virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
virtual int RequestDataObject(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
static vtkMultiTimeStepAlgorithm * New()
int vtkIdType
Definition: vtkType.h:275
interpolate datasets between time steps to produce a new dataset
void PrintSelf(ostream &os, vtkIndent indent)
virtual int FillOutputPortInformation(int port, vtkInformation *info)
a simple class to control print indentation
Definition: vtkIndent.h:38
#define VTKFILTERSHYBRID_EXPORT
abstract superclass for arrays of numeric data
Definition: vtkDataArray.h:54
Superclass for algorithms that would like to make multiple time requests.
virtual int RequestUpdateExtent(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
virtual int FillInputPortInformation(int port, vtkInformation *info)
Store zero or more vtkInformation instances.
virtual int RequestInformation(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
general representation of visualization data
Definition: vtkDataObject.h:64