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

Boost breadth_first_search on a vtkGraph. More...

#include <vtkBoostBreadthFirstSearch.h>

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

List of all members.

Public Types

typedef vtkGraphAlgorithm Superclass

Public Member Functions

virtual int IsA (const char *type)
vtkBoostBreadthFirstSearchNewInstance () const
void PrintSelf (ostream &os, vtkIndent indent)
void SetOriginVertex (vtkIdType index)
void SetOriginVertex (vtkStdString arrayName, vtkVariant value)
void SetOriginVertexString (char *arrayName, char *value)
void SetOriginSelection (vtkSelection *s)
void SetOriginSelectionConnection (vtkAlgorithmOutput *algOutput)
virtual void SetOutputArrayName (const char *)
virtual void SetOriginFromSelection (bool)
virtual bool GetOriginFromSelection ()
virtual void OriginFromSelectionOn ()
virtual void OriginFromSelectionOff ()
virtual bool GetOutputSelection ()
virtual void SetOutputSelection (bool)
virtual void OutputSelectionOn ()
virtual void OutputSelectionOff ()
virtual void SetOutputSelectionType (const char *)

Static Public Member Functions

static vtkBoostBreadthFirstSearchNew ()
static int IsTypeOf (const char *type)
static vtkBoostBreadthFirstSearchSafeDownCast (vtkObjectBase *o)

Protected Member Functions

virtual vtkObjectBaseNewInstanceInternal () const
 vtkBoostBreadthFirstSearch ()
 ~vtkBoostBreadthFirstSearch ()
virtual int RequestData (vtkInformation *, vtkInformationVector **, vtkInformationVector *)
virtual int FillInputPortInformation (int port, vtkInformation *info)
virtual int FillOutputPortInformation (int port, vtkInformation *info)

Detailed Description

Boost breadth_first_search on a vtkGraph.

This vtk class uses the Boost breadth_first_search generic algorithm to perform a breadth first search from a given a 'source' vertex on the input graph (a vtkGraph).

See also:
vtkGraph vtkBoostGraphAdapter
Examples:
vtkBoostBreadthFirstSearch (Examples)
Tests:
vtkBoostBreadthFirstSearch (Tests)

Definition at line 50 of file vtkBoostBreadthFirstSearch.h.


Member Typedef Documentation

Reimplemented from vtkGraphAlgorithm.

Definition at line 54 of file vtkBoostBreadthFirstSearch.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 vtkBoostBreadthFirstSearch::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 vtkBoostBreadthFirstSearch::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* vtkBoostBreadthFirstSearch::NewInstanceInternal ( ) const [protected, virtual]

Reimplemented from vtkGraphAlgorithm.

Reimplemented from vtkGraphAlgorithm.

void vtkBoostBreadthFirstSearch::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.

Convenience methods for setting the origin selection input.

Convenience methods for setting the origin selection input.

Definition at line 60 of file vtkBoostBreadthFirstSearch.h.

Set the index (into the vertex array) of the breadth first search 'origin' vertex.

Set the breadth first search 'origin' vertex. This method is basically the same as above but allows the application to simply specify an array name and value, instead of having to know the specific index of the vertex.

void vtkBoostBreadthFirstSearch::SetOriginVertexString ( char *  arrayName,
char *  value 
)

Convenience method for setting the origin vertex given an array name and string value. This method is primarily for the benefit of the VTK Parallel client/server layer, callers should prefer to use SetOriginVertex() whenever possible.

virtual void vtkBoostBreadthFirstSearch::SetOutputArrayName ( const char *  ) [virtual]

Set the output array name. If no output array name is set then the name 'BFS' is used.

virtual void vtkBoostBreadthFirstSearch::SetOriginFromSelection ( bool  ) [virtual]

Use the vtkSelection from input port 1 as the origin vertex. The selection should be a IDS selection with field type POINTS. The first ID in the selection will be used for the origin vertex. Default is off (origin is specified by SetOriginVertex(...)).

Use the vtkSelection from input port 1 as the origin vertex. The selection should be a IDS selection with field type POINTS. The first ID in the selection will be used for the origin vertex. Default is off (origin is specified by SetOriginVertex(...)).

Use the vtkSelection from input port 1 as the origin vertex. The selection should be a IDS selection with field type POINTS. The first ID in the selection will be used for the origin vertex. Default is off (origin is specified by SetOriginVertex(...)).

Use the vtkSelection from input port 1 as the origin vertex. The selection should be a IDS selection with field type POINTS. The first ID in the selection will be used for the origin vertex. Default is off (origin is specified by SetOriginVertex(...)).

Create an output selection containing the ID of a vertex based on the output selection type. The default is to use the the maximum distance from the starting vertex. Defaults to off.

virtual void vtkBoostBreadthFirstSearch::SetOutputSelection ( bool  ) [virtual]

Create an output selection containing the ID of a vertex based on the output selection type. The default is to use the the maximum distance from the starting vertex. Defaults to off.

Create an output selection containing the ID of a vertex based on the output selection type. The default is to use the the maximum distance from the starting vertex. Defaults to off.

Create an output selection containing the ID of a vertex based on the output selection type. The default is to use the the maximum distance from the starting vertex. Defaults to off.

virtual void vtkBoostBreadthFirstSearch::SetOutputSelectionType ( const char *  ) [virtual]

Set the output selection type. The default is to use the the maximum distance from the starting vertex "MAX_DIST_FROM_ROOT". But you can also specify other things like "ROOT","2D_MAX", etc

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

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

Reimplemented from vtkGraphAlgorithm.

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

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

Fill the output port information objects for this algorithm. This is invoked by the first call to GetOutputPortInformation for each port so subclasses can specify what they can handle.

Reimplemented from vtkGraphAlgorithm.


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