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 =========================================================================*/
22 #ifndef __vtkCollectPolyData_h
23 #define __vtkCollectPolyData_h
24 
25 #include "vtkPolyDataAlgorithm.h"
26 
29 
31 {
32 public:
33  static vtkCollectPolyData *New();
35  void PrintSelf(ostream& os, vtkIndent indent);
36 
38 
40  virtual void SetController(vtkMultiProcessController*);
41  vtkGetObjectMacro(Controller, vtkMultiProcessController);
43 
45 
48  virtual void SetSocketController(vtkSocketController*);
49  vtkGetObjectMacro(SocketController, vtkSocketController);
51 
53 
54  vtkSetMacro(PassThrough, int);
55  vtkGetMacro(PassThrough, int);
56  vtkBooleanMacro(PassThrough, int);
58 
59 protected:
62 
64 
65  // Data generation method
69 
72 
73 private:
74  vtkCollectPolyData(const vtkCollectPolyData&); // Not implemented
75  void operator=(const vtkCollectPolyData&); // Not implemented
76 };
77 
78 #endif
Process communication using Sockets.
Store vtkAlgorithm input/output information.
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
static vtkPolyDataAlgorithm * New()
void PrintSelf(ostream &os, vtkIndent indent)
vtkSocketController * SocketController
virtual int RequestUpdateExtent(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
vtkMultiProcessController * Controller
Superclass for algorithms that produce only polydata as output.
a simple class to control print indentation
Definition: vtkIndent.h:37
virtual int RequestInformation(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
Collect distributed polydata.
#define VTK_PARALLEL_EXPORT
Store zero or more vtkInformation instances.
Multiprocessing communication superclass.