VTK  9.1.0
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
28
31
32class VTKFILTERSPARALLEL_EXPORT vtkCollectPolyData : public vtkPolyDataAlgorithm
33{
34public:
37 void PrintSelf(ostream& os, vtkIndent indent) override;
38
40
45 vtkGetObjectMacro(Controller, vtkMultiProcessController);
47
49
55 vtkGetObjectMacro(SocketController, vtkSocketController);
57
59
62 vtkSetMacro(PassThrough, vtkTypeBool);
63 vtkGetMacro(PassThrough, vtkTypeBool);
64 vtkBooleanMacro(PassThrough, vtkTypeBool);
66
67protected:
70
72
73 // Data generation method
76
79
80private:
82 void operator=(const vtkCollectPolyData&) = delete;
83};
84
85#endif
Collect distributed polydata.
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
static vtkCollectPolyData * New()
virtual void SetSocketController(vtkSocketController *)
When this filter is being used in client-server mode, this is the controller used to communicate betw...
vtkMultiProcessController * Controller
vtkSocketController * SocketController
~vtkCollectPolyData() override
virtual void SetController(vtkMultiProcessController *)
By default this filter uses the global controller, but this method can be used to set another instead...
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
int RequestUpdateExtent(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
a simple class to control print indentation
Definition: vtkIndent.h:113
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Multiprocessing communication superclass.
Superclass for algorithms that produce only polydata as output.
Process communication using Sockets.
int vtkTypeBool
Definition: vtkABI.h:69