VTK
Public Types | Public Member Functions | Static Public Member Functions | Protected Member Functions | Protected Attributes
vtkCollapseVerticesByArray Class Reference

Collapse the graph given a vertex array. More...

#include <vtkCollapseVerticesByArray.h>

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

List of all members.

Public Types

typedef vtkGraphAlgorithm Superclass

Public Member Functions

virtual int IsA (const char *type)
vtkCollapseVerticesByArrayNewInstance () const
void PrintSelf (ostream &os, vtkIndent indent)
void AddAggregateEdgeArray (const char *arrName)
void ClearAggregateEdgeArray ()
virtual bool GetAllowSelfLoops ()
virtual void SetAllowSelfLoops (bool)
virtual void AllowSelfLoopsOn ()
virtual void AllowSelfLoopsOff ()
virtual char * GetVertexArray ()
virtual void SetVertexArray (const char *)
virtual bool GetCountEdgesCollapsed ()
virtual void SetCountEdgesCollapsed (bool)
virtual void CountEdgesCollapsedOn ()
virtual void CountEdgesCollapsedOff ()
virtual char * GetEdgesCollapsedArray ()
virtual void SetEdgesCollapsedArray (const char *)
virtual bool GetCountVerticesCollapsed ()
virtual void SetCountVerticesCollapsed (bool)
virtual void CountVerticesCollapsedOn ()
virtual void CountVerticesCollapsedOff ()
virtual char * GetVerticesCollapsedArray ()
virtual void SetVerticesCollapsedArray (const char *)

Static Public Member Functions

static vtkCollapseVerticesByArrayNew ()
static int IsTypeOf (const char *type)
static vtkCollapseVerticesByArraySafeDownCast (vtkObjectBase *o)

Protected Member Functions

virtual vtkObjectBaseNewInstanceInternal () const
 vtkCollapseVerticesByArray ()
 ~vtkCollapseVerticesByArray ()
virtual int FillOutputPortInformation (int port, vtkInformation *info)
vtkGraphCreate (vtkGraph *inGraph)
virtual int RequestData (vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
void FindEdge (vtkGraph *outGraph, vtkIdType source, vtkIdType target, vtkIdType &edgeId)

Protected Attributes

bool AllowSelfLoops
char * VertexArray
bool CountEdgesCollapsed
char * EdgesCollapsedArray
bool CountVerticesCollapsed
char * VerticesCollapsedArray
vtkCollapseVerticesByArrayInternal * Internal

Detailed Description

Collapse the graph given a vertex array.

vtkCollapseVerticesByArray is a class which collapses the graph using a vertex array as the key. So if the graph has vertices sharing common traits then this class combines all these vertices into one. This class does not perform aggregation on vertex data but allow to do so for edge data. Users can choose one or more edge data arrays for aggregation using AddAggregateEdgeArray function.

Tests:
vtkCollapseVerticesByArray (Tests)

Definition at line 40 of file vtkCollapseVerticesByArray.h.


Member Typedef Documentation

Reimplemented from vtkGraphAlgorithm.

Definition at line 44 of file vtkCollapseVerticesByArray.h.


Constructor & Destructor Documentation


Member Function Documentation

Create an object with Debug turned off, modified time initialized to zero, and reference counting on.

Reimplemented from vtkGraphAlgorithm.

static int vtkCollapseVerticesByArray::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 vtkGraphAlgorithm.

virtual int vtkCollapseVerticesByArray::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 vtkGraphAlgorithm.

Reimplemented from vtkGraphAlgorithm.

virtual vtkObjectBase* vtkCollapseVerticesByArray::NewInstanceInternal ( ) const [protected, virtual]

Reimplemented from vtkGraphAlgorithm.

Reimplemented from vtkGraphAlgorithm.

void vtkCollapseVerticesByArray::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 vtkGraphAlgorithm.

Boolean to allow self loops during collapse.

virtual void vtkCollapseVerticesByArray::SetAllowSelfLoops ( bool  ) [virtual]

Boolean to allow self loops during collapse.

Boolean to allow self loops during collapse.

Boolean to allow self loops during collapse.

void vtkCollapseVerticesByArray::AddAggregateEdgeArray ( const char *  arrName)

Add arrays on which aggregation of data is allowed. Default if replaced by the last value.

Clear the list of arrays on which aggregation was set to allow.

virtual char* vtkCollapseVerticesByArray::GetVertexArray ( ) [virtual]

Set the array using which perform the collapse.

virtual void vtkCollapseVerticesByArray::SetVertexArray ( const char *  ) [virtual]

Set the array using which perform the collapse.

Set if count should be made of how many edges collapsed.

virtual void vtkCollapseVerticesByArray::SetCountEdgesCollapsed ( bool  ) [virtual]

Set if count should be made of how many edges collapsed.

Set if count should be made of how many edges collapsed.

Set if count should be made of how many edges collapsed.

Name of the array where the count of how many edges collapsed will be stored.By default the name of array is "EdgesCollapsedCountArray".

virtual void vtkCollapseVerticesByArray::SetEdgesCollapsedArray ( const char *  ) [virtual]

Name of the array where the count of how many edges collapsed will be stored.By default the name of array is "EdgesCollapsedCountArray".

Get/Set if count should be made of how many vertices collapsed.

virtual void vtkCollapseVerticesByArray::SetCountVerticesCollapsed ( bool  ) [virtual]

Get/Set if count should be made of how many vertices collapsed.

Get/Set if count should be made of how many vertices collapsed.

Get/Set if count should be made of how many vertices collapsed.

Name of the array where the count of how many vertices collapsed will be stored. By default name of the array is "VerticesCollapsedCountArray".

virtual void vtkCollapseVerticesByArray::SetVerticesCollapsedArray ( const char *  ) [virtual]

Name of the array where the count of how many vertices collapsed will be stored. By default name of the array is "VerticesCollapsedCountArray".

virtual int vtkCollapseVerticesByArray::RequestData ( vtkInformation request,
vtkInformationVector **  inputVector,
vtkInformationVector outputVector 
) [protected, virtual]

Pipeline function.

Reimplemented from vtkGraphAlgorithm.

virtual int vtkCollapseVerticesByArray::FillOutputPortInformation ( int  port,
vtkInformation info 
) [protected, virtual]

Pipeline function.

Reimplemented from vtkGraphAlgorithm.

Create output graph given all the parameters. Helper function.

void vtkCollapseVerticesByArray::FindEdge ( vtkGraph outGraph,
vtkIdType  source,
vtkIdType  target,
vtkIdType edgeId 
) [protected]

Helper function.


Member Data Documentation

Definition at line 134 of file vtkCollapseVerticesByArray.h.

Definition at line 135 of file vtkCollapseVerticesByArray.h.

Definition at line 137 of file vtkCollapseVerticesByArray.h.

Definition at line 138 of file vtkCollapseVerticesByArray.h.

Definition at line 140 of file vtkCollapseVerticesByArray.h.

Definition at line 141 of file vtkCollapseVerticesByArray.h.

vtkCollapseVerticesByArrayInternal* vtkCollapseVerticesByArray::Internal [protected]

Definition at line 143 of file vtkCollapseVerticesByArray.h.


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