Main Page   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members   File Members   Related Pages  

vtkMergeDataObjectFilter Class Reference

merge dataset and data object field to create dataset with attribute data. More...

#include <vtkMergeDataObjectFilter.h>

Inheritance diagram for vtkMergeDataObjectFilter:

Inheritance graph
[legend]
Collaboration diagram for vtkMergeDataObjectFilter:

Collaboration graph
[legend]
List of all members.

Public Methods

virtual const char * GetClassName ()
virtual int IsA (const char *type)
void PrintSelf (ostream &os, vtkIndent indent)
void SetDataObject (vtkDataObject *object)
vtkDataObjectGetDataObject ()
virtual void SetOutputField (int)
virtual int GetOutputField ()
void SetOutputFieldToDataObjectField ()
void SetOutputFieldToPointDataField ()
void SetOutputFieldToCellDataField ()

Static Public Methods

vtkMergeDataObjectFilter * New ()
int IsTypeOf (const char *type)
vtkMergeDataObjectFilter * SafeDownCast (vtkObject *o)

Protected Methods

 vtkMergeDataObjectFilter ()
 ~vtkMergeDataObjectFilter ()
void Execute ()

Protected Attributes

int OutputField

Detailed Description

merge dataset and data object field to create dataset with attribute data.

Date:
2001/10/11 13:37:09
Revision:
1.15

vtkMergeDataObjectFilter is a filter that merges the field from a vtkDataObject with a vtkDataSet. The resulting combined dataset can then be processed by other filters (e.g., vtkFieldDataToAttributeDataFilter) to create attribute data like scalars, vectors, etc.

The filter operates as follows. The field data from the vtkDataObject is merged with the input's vtkDataSet and then placed in the output. You can choose to place the field data into the cell data field, the point data field, or the datasets field (i.e., the one inherited from vtkDataSet's superclass vtkDataObject). All this data shuffling occurs via reference counting, therefore memory is not copied.

One of the uses of this filter is to allow you to read/generate the structure of a dataset independent of the attributes. So, for example, you could store the dataset geometry/topology in one file, and field data in another. Then use this filter in combination with vtkFieldDataToAttributeData to create a dataset ready for processing in the visualization pipeline.

Definition at line 72 of file vtkMergeDataObjectFilter.h.


Constructor & Destructor Documentation

vtkMergeDataObjectFilter::vtkMergeDataObjectFilter   [protected]
 

vtkMergeDataObjectFilter::~vtkMergeDataObjectFilter   [protected]
 


Member Function Documentation

vtkMergeDataObjectFilter* vtkMergeDataObjectFilter::New   [static]
 

Instantiate object with no start, end, or progress methods.

Reimplemented from vtkDataSetSource.

virtual const char* vtkMergeDataObjectFilter::GetClassName   [virtual]
 

Return the class name as a string. This method is defined in all subclasses of vtkObject with the vtkTypeMacro found in vtkSetGet.h.

Reimplemented from vtkDataSetToDataSetFilter.

int vtkMergeDataObjectFilter::IsTypeOf const char *    type [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 vtkDataSetToDataSetFilter.

virtual int vtkMergeDataObjectFilter::IsA const char *    type [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 vtkDataSetToDataSetFilter.

vtkMergeDataObjectFilter* vtkMergeDataObjectFilter::SafeDownCast vtkObject   o [static]
 

Will cast the supplied object to vtkObject* is this is a safe operation (i.e., a safe downcast); otherwise NULL is returned. This method is defined in all subclasses of vtkObject with the vtkTypeMacro found in vtkSetGet.h.

Reimplemented from vtkDataSetToDataSetFilter.

void vtkMergeDataObjectFilter::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 vtkSource.

void vtkMergeDataObjectFilter::SetDataObject vtkDataObject   object
 

Specify the data object to merge with the input dataset.

vtkDataObject* vtkMergeDataObjectFilter::GetDataObject  
 

Specify the data object to merge with the input dataset.

virtual void vtkMergeDataObjectFilter::SetOutputField int    [virtual]
 

Specify where to place the field data during the merge process. There are three choices: the field data associated with the vtkDataObject superclass; the point field attribute data; and the cell field attribute data.

virtual int vtkMergeDataObjectFilter::GetOutputField   [virtual]
 

Specify where to place the field data during the merge process. There are three choices: the field data associated with the vtkDataObject superclass; the point field attribute data; and the cell field attribute data.

void vtkMergeDataObjectFilter::SetOutputFieldToDataObjectField   [inline]
 

Specify where to place the field data during the merge process. There are three choices: the field data associated with the vtkDataObject superclass; the point field attribute data; and the cell field attribute data.

Definition at line 92 of file vtkMergeDataObjectFilter.h.

void vtkMergeDataObjectFilter::SetOutputFieldToPointDataField   [inline]
 

Specify where to place the field data during the merge process. There are three choices: the field data associated with the vtkDataObject superclass; the point field attribute data; and the cell field attribute data.

Definition at line 94 of file vtkMergeDataObjectFilter.h.

void vtkMergeDataObjectFilter::SetOutputFieldToCellDataField   [inline]
 

Specify where to place the field data during the merge process. There are three choices: the field data associated with the vtkDataObject superclass; the point field attribute data; and the cell field attribute data.

Definition at line 96 of file vtkMergeDataObjectFilter.h.

void vtkMergeDataObjectFilter::Execute   [protected, virtual]
 

This method is the old style execute method

Reimplemented from vtkSource.


Member Data Documentation

int vtkMergeDataObjectFilter::OutputField [protected]
 

Definition at line 107 of file vtkMergeDataObjectFilter.h.


The documentation for this class was generated from the following file:
Generated on Thu Mar 28 14:35:17 2002 for VTK by doxygen1.2.11.1 written by Dimitri van Heesch, © 1997-2001