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

A subgroup of processes from a communicator. More...

#include <vtkProcessGroup.h>

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

List of all members.

Public Types

typedef vtkObject Superclass

Public Member Functions

virtual int IsA (const char *type)
vtkProcessGroupNewInstance () const
virtual void PrintSelf (ostream &os, vtkIndent indent)
void SetCommunicator (vtkCommunicator *communicator)
int GetProcessId (int pos)
int GetLocalProcessId ()
int FindProcessId (int processId)
int AddProcessId (int processId)
int RemoveProcessId (int processId)
void RemoveAllProcessIds ()
void Copy (vtkProcessGroup *group)
void Initialize (vtkMultiProcessController *controller)
void Initialize (vtkCommunicator *communicator)
virtual vtkCommunicatorGetCommunicator ()
virtual int GetNumberOfProcessIds ()

Static Public Member Functions

static int IsTypeOf (const char *type)
static vtkProcessGroupSafeDownCast (vtkObjectBase *o)
static vtkProcessGroupNew ()

Protected Member Functions

virtual vtkObjectBaseNewInstanceInternal () const
 vtkProcessGroup ()
virtual ~vtkProcessGroup ()

Protected Attributes

intProcessIds
int NumberOfProcessIds
vtkCommunicatorCommunicator

Detailed Description

A subgroup of processes from a communicator.

This class is used for creating groups of processes. A vtkProcessGroup is initialized by passing the controller or communicator on which the group is based off of. You can then use the group to subset and reorder the the processes. Eventually, you can pass the group object to the CreateSubController method of vtkMultiProcessController to create a controller for the defined group of processes. You must use the same controller (or attached communicator) from which this group was initialized with.

See also:
vtkMultiProcessController, vtkCommunicator
Thanks:
This class was originally written by Kenneth Moreland (kmore.nosp@m.l@sa.nosp@m.ndia..nosp@m.gov) from Sandia National Laboratories.
Tests:
vtkProcessGroup (Tests)

Definition at line 56 of file vtkProcessGroup.h.


Member Typedef Documentation

Reimplemented from vtkObject.

Definition at line 59 of file vtkProcessGroup.h.


Constructor & Destructor Documentation

virtual vtkProcessGroup::~vtkProcessGroup ( ) [protected, virtual]

Member Function Documentation

static int vtkProcessGroup::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 vtkObject.

virtual int vtkProcessGroup::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 vtkObject.

Reimplemented from vtkObject.

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

Reimplemented from vtkObject.

Reimplemented from vtkObject.

static vtkProcessGroup* vtkProcessGroup::New ( ) [static]

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

Reimplemented from vtkObject.

virtual void vtkProcessGroup::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 vtkObject.

Initialize the group to the given controller or communicator. The group will be set to contain all of the processes in the controller/communicator in the same order.

void vtkProcessGroup::Initialize ( vtkCommunicator communicator)

Initialize the group to the given controller or communicator. The group will be set to contain all of the processes in the controller/communicator in the same order.

Get the communicator on which this group is based on.

Set the communicator. This has the same effect as Initialize except that the contents of the group will not be modified (although they may be truncated if the new communicator is smaller than the current group). Note that this can lead to an invalid group if there are values in the group that are not valid in the new communicator.

Returns the size of this group (the number of processes defined in it).

Given a position in the group, returns the id of the process in the communicator this group is based on. For example, if this group contains {6, 2, 8, 1}, then GetProcessId(2) will return 8 and GetProcessId(3) will return 1.

Definition at line 93 of file vtkProcessGroup.h.

Get the process id for the local process (as defined by the group's communicator). Returns -1 if the local process is not in the group.

Given a process id in the communicator, this method returns its location in the group or -1 if it is not in the group. For example, if this group contains {6, 2, 8, 1}, then FindProcessId(2) will return 1 and FindProcessId(3) will return -1.

Add a process id to the end of the group (if it is not already in the group). Returns the location where the id was stored.

Remove the given process id from the group (assuming it is in the group). All ids to the "right" of the removed id are shifted over. Returns 1 if the process id was removed, 0 if the process id was not in the group in the first place.

Removes all the processes ids from the group, leaving the group empty.

Copies the given group's communicator and process ids.


Member Data Documentation

Definition at line 126 of file vtkProcessGroup.h.

Definition at line 127 of file vtkProcessGroup.h.

Definition at line 129 of file vtkProcessGroup.h.


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