VTK  9.3.20240419
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
15 #include "vtkPolyDataAlgorithm.h"
16 
17 VTK_ABI_NAMESPACE_BEGIN
20 
21 class VTKFILTERSPARALLEL_EXPORT vtkCollectPolyData : public vtkPolyDataAlgorithm
22 {
23 public:
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 
56 protected:
58  ~vtkCollectPolyData() override;
59 
61 
62  // Data generation method
65 
68 
69 private:
70  vtkCollectPolyData(const vtkCollectPolyData&) = delete;
71  void operator=(const vtkCollectPolyData&) = delete;
72 };
73 
74 VTK_ABI_NAMESPACE_END
75 #endif
Collect distributed polydata.
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
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
static vtkCollectPolyData * New()
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