VTK
Public Types | Public Member Functions | Static Public Member Functions | Protected Member Functions | Static Protected Member Functions
vtkMultiTimeStepAlgorithm Class Reference

Superclass for algorithms that would like to make multiple time requests. More...

#include <vtkMultiTimeStepAlgorithm.h>

Inheritance diagram for vtkMultiTimeStepAlgorithm:
Inheritance graph
[legend]
Collaboration diagram for vtkMultiTimeStepAlgorithm:
Collaboration graph
[legend]

List of all members.

Public Types

typedef vtkAlgorithm Superclass

Public Member Functions

virtual int IsA (const char *type)
vtkMultiTimeStepAlgorithmNewInstance () const
void PrintSelf (ostream &os, vtkIndent indent)

Static Public Member Functions

static vtkMultiTimeStepAlgorithmNew ()
static int IsTypeOf (const char *type)
static vtkMultiTimeStepAlgorithmSafeDownCast (vtkObjectBase *o)

Protected Member Functions

virtual vtkObjectBaseNewInstanceInternal () const
 vtkMultiTimeStepAlgorithm ()
 ~vtkMultiTimeStepAlgorithm ()
int ProcessRequest (vtkInformation *, vtkInformationVector **, vtkInformationVector *)
virtual int RequestDataObject (vtkInformation *, vtkInformationVector **, vtkInformationVector *)
virtual int RequestInformation (vtkInformation *, vtkInformationVector **, vtkInformationVector *)
virtual int RequestData (vtkInformation *, vtkInformationVector **, vtkInformationVector *)
virtual int RequestUpdateExtent (vtkInformation *, vtkInformationVector **, vtkInformationVector *)

Static Protected Member Functions

static
vtkInformationDoubleVectorKey
UPDATE_TIME_STEPS ()

Detailed Description

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.


Member Typedef Documentation

Reimplemented from vtkAlgorithm.

Reimplemented in vtkTemporalInterpolator.

Definition at line 41 of file vtkMultiTimeStepAlgorithm.h.


Constructor & Destructor Documentation

Definition at line 48 of file vtkMultiTimeStepAlgorithm.h.


Member Function Documentation

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.

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.

This is filled by the child class to request multiple time steps

This is called by the superclass. This is the method you should override.

Reimplemented in vtkTemporalInterpolator.

Definition at line 59 of file vtkMultiTimeStepAlgorithm.h.

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.

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.


The documentation for this class was generated from the following file: