VTK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Public Types | Public Member Functions | Static Public Member Functions | Protected Member Functions | Protected Attributes | List of all members
vtkDuplicatePolyData Class Reference

For distributed tiled displays. More...

#include <vtkDuplicatePolyData.h>

Inherits vtkPolyDataAlgorithm.

Public Types

typedef vtkPolyDataAlgorithm Superclass
 

Public Member Functions

virtual int IsA (const char *type)
 
vtkDuplicatePolyDataNewInstance () const
 
void PrintSelf (ostream &os, vtkIndent indent)
 
void InitializeSchedule (int numProcs)
 
virtual void SetController (vtkMultiProcessController *)
 
virtual vtkMultiProcessController * GetController ()
 
virtual void SetSynchronous (int)
 
virtual int GetSynchronous ()
 
virtual void SynchronousOn ()
 
virtual void SynchronousOff ()
 
vtkSocketController * GetSocketController ()
 
void SetSocketController (vtkSocketController *controller)
 
virtual void SetClientFlag (int)
 
virtual int GetClientFlag ()
 
virtual unsigned long GetMemorySize ()
 

Static Public Member Functions

static vtkDuplicatePolyDataNew ()
 
static int IsTypeOf (const char *type)
 
static vtkDuplicatePolyDataSafeDownCast (vtkObjectBase *o)
 

Protected Member Functions

virtual vtkObjectBase * NewInstanceInternal () const
 
 vtkDuplicatePolyData ()
 
 ~vtkDuplicatePolyData ()
 
virtual int RequestUpdateExtent (vtkInformation *, vtkInformationVector **, vtkInformationVector *)
 
virtual int RequestData (vtkInformation *, vtkInformationVector **, vtkInformationVector *)
 
void ClientExecute (vtkPolyData *output)
 
virtual int RequestInformation (vtkInformation *, vtkInformationVector **, vtkInformationVector *)
 

Protected Attributes

vtkMultiProcessController * Controller
 
int Synchronous
 
int NumberOfProcesses
 
int ScheduleLength
 
int ** Schedule
 
vtkSocketController * SocketController
 
int ClientFlag
 
unsigned long MemorySize
 

Detailed Description

For distributed tiled displays.

This filter collects poly data and duplicates it on every node. Converts data parallel so every node has a complete copy of the data. The filter is used at the end of a pipeline for driving a tiled display.

Definition at line 32 of file vtkDuplicatePolyData.h.

Member Typedef Documentation

typedef vtkPolyDataAlgorithm vtkDuplicatePolyData::Superclass

Definition at line 36 of file vtkDuplicatePolyData.h.

Constructor & Destructor Documentation

vtkDuplicatePolyData::vtkDuplicatePolyData ( )
protected
vtkDuplicatePolyData::~vtkDuplicatePolyData ( )
protected

Member Function Documentation

static vtkDuplicatePolyData* vtkDuplicatePolyData::New ( )
static
static int vtkDuplicatePolyData::IsTypeOf ( const char *  type)
static
virtual int vtkDuplicatePolyData::IsA ( const char *  type)
virtual
static vtkDuplicatePolyData* vtkDuplicatePolyData::SafeDownCast ( vtkObjectBase *  o)
static
virtual vtkObjectBase* vtkDuplicatePolyData::NewInstanceInternal ( ) const
protectedvirtual
vtkDuplicatePolyData* vtkDuplicatePolyData::NewInstance ( ) const
void vtkDuplicatePolyData::PrintSelf ( ostream &  os,
vtkIndent  indent 
)
virtual void vtkDuplicatePolyData::SetController ( vtkMultiProcessController *  )
virtual

By defualt this filter uses the global controller, but this method can be used to set another instead.

virtual vtkMultiProcessController* vtkDuplicatePolyData::GetController ( )
virtual

By defualt this filter uses the global controller, but this method can be used to set another instead.

void vtkDuplicatePolyData::InitializeSchedule ( int  numProcs)
virtual void vtkDuplicatePolyData::SetSynchronous ( int  )
virtual

This flag causes sends and receives to be matched. When this flag is off, two sends occur then two receives. I want to see if it makes a difference in performance. The flag is on by default.

virtual int vtkDuplicatePolyData::GetSynchronous ( )
virtual

This flag causes sends and receives to be matched. When this flag is off, two sends occur then two receives. I want to see if it makes a difference in performance. The flag is on by default.

virtual void vtkDuplicatePolyData::SynchronousOn ( )
virtual

This flag causes sends and receives to be matched. When this flag is off, two sends occur then two receives. I want to see if it makes a difference in performance. The flag is on by default.

virtual void vtkDuplicatePolyData::SynchronousOff ( )
virtual

This flag causes sends and receives to be matched. When this flag is off, two sends occur then two receives. I want to see if it makes a difference in performance. The flag is on by default.

vtkSocketController* vtkDuplicatePolyData::GetSocketController ( )
inline

This duplicate filter works in client server mode when this controller is set. We have a client flag to diferentiate the client and server because the socket controller is odd: Proth processes think their id is 0.

Definition at line 62 of file vtkDuplicatePolyData.h.

void vtkDuplicatePolyData::SetSocketController ( vtkSocketController *  controller)

This duplicate filter works in client server mode when this controller is set. We have a client flag to diferentiate the client and server because the socket controller is odd: Proth processes think their id is 0.

virtual void vtkDuplicatePolyData::SetClientFlag ( int  )
virtual

This duplicate filter works in client server mode when this controller is set. We have a client flag to diferentiate the client and server because the socket controller is odd: Proth processes think their id is 0.

virtual int vtkDuplicatePolyData::GetClientFlag ( )
virtual

This duplicate filter works in client server mode when this controller is set. We have a client flag to diferentiate the client and server because the socket controller is odd: Proth processes think their id is 0.

virtual unsigned long vtkDuplicatePolyData::GetMemorySize ( )
virtual

This returns to size of the output (on this process). This method is not really used. It is needed to have the same API as vtkCollectPolyData.

virtual int vtkDuplicatePolyData::RequestUpdateExtent ( vtkInformation *  ,
vtkInformationVector **  ,
vtkInformationVector *   
)
protectedvirtual
virtual int vtkDuplicatePolyData::RequestData ( vtkInformation *  ,
vtkInformationVector **  ,
vtkInformationVector *   
)
protectedvirtual
void vtkDuplicatePolyData::ClientExecute ( vtkPolyData *  output)
protected
virtual int vtkDuplicatePolyData::RequestInformation ( vtkInformation *  ,
vtkInformationVector **  ,
vtkInformationVector *   
)
protectedvirtual

Member Data Documentation

vtkMultiProcessController* vtkDuplicatePolyData::Controller
protected

Definition at line 85 of file vtkDuplicatePolyData.h.

int vtkDuplicatePolyData::Synchronous
protected

Definition at line 86 of file vtkDuplicatePolyData.h.

int vtkDuplicatePolyData::NumberOfProcesses
protected

Definition at line 88 of file vtkDuplicatePolyData.h.

int vtkDuplicatePolyData::ScheduleLength
protected

Definition at line 89 of file vtkDuplicatePolyData.h.

int** vtkDuplicatePolyData::Schedule
protected

Definition at line 90 of file vtkDuplicatePolyData.h.

vtkSocketController* vtkDuplicatePolyData::SocketController
protected

Definition at line 93 of file vtkDuplicatePolyData.h.

int vtkDuplicatePolyData::ClientFlag
protected

Definition at line 94 of file vtkDuplicatePolyData.h.

unsigned long vtkDuplicatePolyData::MemorySize
protected

Definition at line 96 of file vtkDuplicatePolyData.h.


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