VTK
|
Superclass for algorithms that would like to make multiple time requests. More...
#include <vtkMultiTimeStepAlgorithm.h>
Superclass for algorithms that would like to make multiple time requests.
This class can be inherited by any algorithm that wishes to make multiple time requests upstream. The child class uses UPDATE_TIME_STEPS to make the time requests and use set of time-stamped data objects are stored in time order in a vtkMultiBlockDataSet object.
Definition at line 37 of file vtkMultiTimeStepAlgorithm.h.
Reimplemented from vtkAlgorithm.
Reimplemented in vtkTemporalInterpolator.
Definition at line 41 of file vtkMultiTimeStepAlgorithm.h.
vtkMultiTimeStepAlgorithm::vtkMultiTimeStepAlgorithm | ( | ) | [protected] |
vtkMultiTimeStepAlgorithm::~vtkMultiTimeStepAlgorithm | ( | ) | [inline, protected] |
Definition at line 48 of file vtkMultiTimeStepAlgorithm.h.
static vtkMultiTimeStepAlgorithm* vtkMultiTimeStepAlgorithm::New | ( | ) | [static] |
Create an object with Debug turned off, modified time initialized to zero, and reference counting on.
Reimplemented from vtkAlgorithm.
Reimplemented in vtkTemporalInterpolator.
static int vtkMultiTimeStepAlgorithm::IsTypeOf | ( | const char * | name | ) | [static] |
Return 1 if this class type is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeMacro found in vtkSetGet.h.
Reimplemented from vtkAlgorithm.
Reimplemented in vtkTemporalInterpolator.
virtual int vtkMultiTimeStepAlgorithm::IsA | ( | const char * | name | ) | [virtual] |
Return 1 if this class is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeMacro found in vtkSetGet.h.
Reimplemented from vtkAlgorithm.
Reimplemented in vtkTemporalInterpolator.
static vtkMultiTimeStepAlgorithm* vtkMultiTimeStepAlgorithm::SafeDownCast | ( | vtkObjectBase * | o | ) | [static] |
Reimplemented from vtkAlgorithm.
Reimplemented in vtkTemporalInterpolator.
virtual vtkObjectBase* vtkMultiTimeStepAlgorithm::NewInstanceInternal | ( | ) | const [protected, virtual] |
Reimplemented from vtkAlgorithm.
Reimplemented in vtkTemporalInterpolator.
Reimplemented from vtkAlgorithm.
Reimplemented in vtkTemporalInterpolator.
void vtkMultiTimeStepAlgorithm::PrintSelf | ( | ostream & | os, |
vtkIndent | indent | ||
) | [virtual] |
Methods invoked by print to print information about the object including superclasses. Typically not called by the user (use Print() instead) but used in the hierarchical print process to combine the output of several classes.
Reimplemented from vtkAlgorithm.
Reimplemented in vtkTemporalInterpolator.
static vtkInformationDoubleVectorKey* vtkMultiTimeStepAlgorithm::UPDATE_TIME_STEPS | ( | ) | [static, protected] |
This is filled by the child class to request multiple time steps
virtual int vtkMultiTimeStepAlgorithm::RequestDataObject | ( | vtkInformation * | , |
vtkInformationVector ** | , | ||
vtkInformationVector * | |||
) | [inline, protected, virtual] |
This is called by the superclass. This is the method you should override.
Reimplemented in vtkTemporalInterpolator.
Definition at line 59 of file vtkMultiTimeStepAlgorithm.h.
virtual int vtkMultiTimeStepAlgorithm::RequestInformation | ( | vtkInformation * | , |
vtkInformationVector ** | , | ||
vtkInformationVector * | |||
) | [inline, protected, virtual] |
This is called by the superclass. This is the method you should override.
Reimplemented in vtkTemporalInterpolator.
Definition at line 68 of file vtkMultiTimeStepAlgorithm.h.
virtual int vtkMultiTimeStepAlgorithm::RequestData | ( | vtkInformation * | , |
vtkInformationVector ** | , | ||
vtkInformationVector * | |||
) | [inline, protected, virtual] |
This is called by the superclass. This is the method you should override.
Reimplemented in vtkTemporalInterpolator.
Definition at line 77 of file vtkMultiTimeStepAlgorithm.h.
virtual int vtkMultiTimeStepAlgorithm::RequestUpdateExtent | ( | vtkInformation * | , |
vtkInformationVector ** | , | ||
vtkInformationVector * | |||
) | [inline, protected, virtual] |
This is called by the superclass. This is the method you should override.
Reimplemented in vtkTemporalInterpolator.
Definition at line 86 of file vtkMultiTimeStepAlgorithm.h.
int vtkMultiTimeStepAlgorithm::ProcessRequest | ( | vtkInformation * | request, |
vtkInformationVector ** | inInfo, | ||
vtkInformationVector * | outInfo | ||
) | [protected, virtual] |
Upstream/Downstream requests form the generalized interface through which executives invoke a algorithm's functionality. Upstream requests correspond to information flow from the algorithm's outputs to its inputs. Downstream requests correspond to information flow from the algorithm's inputs to its outputs. A downstream request is defined by the contents of the request information object. The input to the request is stored in the input information vector passed to ProcessRequest. The results of an downstream request are stored in the output information vector passed to ProcessRequest. An upstream request is defined by the contents of the request information object. The input to the request is stored in the output information vector passed to ProcessRequest. The results of an upstream request are stored in the input information vector passed to ProcessRequest. It returns the boolean status of the pipeline (false means failure).
Reimplemented from vtkAlgorithm.