VTK  9.3.20240423
vtkCollectPolyData.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2// SPDX-License-Identifier: BSD-3-Clause
11#ifndef vtkCollectPolyData_h
12#define vtkCollectPolyData_h
13
14#include "vtkFiltersParallelModule.h" // For export macro
16
17VTK_ABI_NAMESPACE_BEGIN
20
21class VTKFILTERSPARALLEL_EXPORT vtkCollectPolyData : public vtkPolyDataAlgorithm
22{
23public:
26 void PrintSelf(ostream& os, vtkIndent indent) override;
27
29
34 vtkGetObjectMacro(Controller, vtkMultiProcessController);
36
38
44 vtkGetObjectMacro(SocketController, vtkSocketController);
46
48
51 vtkSetMacro(PassThrough, vtkTypeBool);
52 vtkGetMacro(PassThrough, vtkTypeBool);
53 vtkBooleanMacro(PassThrough, vtkTypeBool);
55
56protected:
59
61
62 // Data generation method
65
68
69private:
71 void operator=(const vtkCollectPolyData&) = delete;
72};
73
74VTK_ABI_NAMESPACE_END
75#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:108
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:64