#include <vtkMultiBlockDataGroupFilter.h>
vtkMultiBlockDataGroupFilter is an M to 1 filter that merges multiple input into one multi-group dataset. It will assign each input to one group of the multi-group dataset and will assign each update piece as a sub-block. For example, if there are two inputs and four update pieces, the output contains two groups with four datasets each.
Definition at line 30 of file vtkMultiBlockDataGroupFilter.h.
Public Types | |
typedef vtkMultiBlockDataSetAlgorithm | Superclass |
Public Member Functions | |
virtual const char * | GetClassName () |
virtual int | IsA (const char *type) |
void | PrintSelf (ostream &os, vtkIndent indent) |
void | AddInput (vtkDataObject *) |
void | AddInput (int, vtkDataObject *) |
Static Public Member Functions | |
static int | IsTypeOf (const char *type) |
static vtkMultiBlockDataGroupFilter * | SafeDownCast (vtkObject *o) |
static vtkMultiBlockDataGroupFilter * | New () |
Protected Member Functions | |
vtkMultiBlockDataGroupFilter () | |
~vtkMultiBlockDataGroupFilter () | |
int | RequestData (vtkInformation *, vtkInformationVector **, vtkInformationVector *) |
virtual int | FillInputPortInformation (int port, vtkInformation *info) |
Reimplemented from vtkMultiBlockDataSetAlgorithm.
Definition at line 33 of file vtkMultiBlockDataGroupFilter.h.
vtkMultiBlockDataGroupFilter::vtkMultiBlockDataGroupFilter | ( | ) | [protected] |
vtkMultiBlockDataGroupFilter::~vtkMultiBlockDataGroupFilter | ( | ) | [protected] |
virtual const char* vtkMultiBlockDataGroupFilter::GetClassName | ( | ) | [virtual] |
Reimplemented from vtkMultiBlockDataSetAlgorithm.
static int vtkMultiBlockDataGroupFilter::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 vtkTypeRevisionMacro found in vtkSetGet.h.
Reimplemented from vtkMultiBlockDataSetAlgorithm.
virtual int vtkMultiBlockDataGroupFilter::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 vtkTypeRevisionMacro found in vtkSetGet.h.
Reimplemented from vtkMultiBlockDataSetAlgorithm.
static vtkMultiBlockDataGroupFilter* vtkMultiBlockDataGroupFilter::SafeDownCast | ( | vtkObject * | o | ) | [static] |
Reimplemented from vtkMultiBlockDataSetAlgorithm.
void vtkMultiBlockDataGroupFilter::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 vtkMultiBlockDataSetAlgorithm.
static vtkMultiBlockDataGroupFilter* vtkMultiBlockDataGroupFilter::New | ( | ) | [static] |
Construct object with PointIds and CellIds on; and ids being generated as scalars.
Reimplemented from vtkMultiBlockDataSetAlgorithm.
void vtkMultiBlockDataGroupFilter::AddInput | ( | vtkDataObject * | ) |
Add an input of this algorithm. Note that these methods support old-style pipeline connections. When writing new code you should use the more general vtkAlgorithm::AddInputConnection(). See SetInput() for details.
void vtkMultiBlockDataGroupFilter::AddInput | ( | int | , | |
vtkDataObject * | ||||
) |
Add an input of this algorithm. Note that these methods support old-style pipeline connections. When writing new code you should use the more general vtkAlgorithm::AddInputConnection(). See SetInput() for details.
int vtkMultiBlockDataGroupFilter::RequestData | ( | vtkInformation * | , | |
vtkInformationVector ** | , | |||
vtkInformationVector * | ||||
) | [protected, virtual] |
This is called by the superclass. This is the method you should override.
Reimplemented from vtkMultiBlockDataSetAlgorithm.
virtual int vtkMultiBlockDataGroupFilter::FillInputPortInformation | ( | int | port, | |
vtkInformation * | info | |||
) | [protected, virtual] |
Fill the input port information objects for this algorithm. This is invoked by the first call to GetInputPortInformation for each port so subclasses can specify what they can handle.
Reimplemented from vtkMultiBlockDataSetAlgorithm.