VTK
vtkCollectPolyData.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkCollectPolyData.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
23 #ifndef vtkCollectPolyData_h
24 #define vtkCollectPolyData_h
25 
26 #include "vtkFiltersParallelModule.h" // For export macro
27 #include "vtkPolyDataAlgorithm.h"
28 
31 
32 class VTKFILTERSPARALLEL_EXPORT vtkCollectPolyData : public vtkPolyDataAlgorithm
33 {
34 public:
37  void PrintSelf(ostream& os, vtkIndent indent);
38 
40 
45  vtkGetObjectMacro(Controller, vtkMultiProcessController);
47 
49 
55  vtkGetObjectMacro(SocketController, vtkSocketController);
57 
59 
62  vtkSetMacro(PassThrough, int);
63  vtkGetMacro(PassThrough, int);
64  vtkBooleanMacro(PassThrough, int);
66 
67 protected:
70 
72 
73  // Data generation method
76 
79 
80 private:
81  vtkCollectPolyData(const vtkCollectPolyData&) VTK_DELETE_FUNCTION;
82  void operator=(const vtkCollectPolyData&) VTK_DELETE_FUNCTION;
83 };
84 
85 #endif
vtkInformationVector
Store zero or more vtkInformation instances.
Definition: vtkInformationVector.h:42
vtkCollectPolyData::SetController
virtual void SetController(vtkMultiProcessController *)
By defualt this filter uses the global controller, but this method can be used to set another instead...
vtkCollectPolyData::SocketController
vtkSocketController * SocketController
Definition: vtkCollectPolyData.h:78
vtkCollectPolyData::Controller
vtkMultiProcessController * Controller
Definition: vtkCollectPolyData.h:77
vtkCollectPolyData::RequestUpdateExtent
virtual int RequestUpdateExtent(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
This is called by the superclass.
vtkCollectPolyData::vtkCollectPolyData
vtkCollectPolyData()
vtkPolyDataAlgorithm.h
vtkCollectPolyData::~vtkCollectPolyData
~vtkCollectPolyData()
vtkMultiProcessController
Multiprocessing communication superclass.
Definition: vtkMultiProcessController.h:83
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:40
vtkCollectPolyData::RequestData
virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
This is called by the superclass.
vtkCollectPolyData::New
static vtkCollectPolyData * New()
vtkCollectPolyData::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent)
Methods invoked by print to print information about the object including superclasses.
vtkCollectPolyData
Collect distributed polydata.
Definition: vtkCollectPolyData.h:33
vtkBooleanMacro
vtkBooleanMacro(IgnoreDriverBugs, bool)
Updates the extensions string.
vtkInformation
Store vtkAlgorithm input/output information.
Definition: vtkInformation.h:87
vtkSetMacro
vtkSetMacro(IgnoreDriverBugs, bool)
Updates the extensions string.
vtkSocketController
Process communication using Sockets.
Definition: vtkSocketController.h:53
vtkCollectPolyData::SetSocketController
virtual void SetSocketController(vtkSocketController *)
When this filter is being used in client-server mode, this is the controller used to communicate betw...
vtkCollectPolyData::PassThrough
int PassThrough
Definition: vtkCollectPolyData.h:71
vtkPolyDataAlgorithm
Superclass for algorithms that produce only polydata as output.
Definition: vtkPolyDataAlgorithm.h:45