VTK  9.3.20240328
vtkCollectTable.h
Go to the documentation of this file.
1 // SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2 // SPDX-FileCopyrightText: Copyright (c) Sandia Corporation
3 // SPDX-License-Identifier: BSD-3-Clause
12 #ifndef vtkCollectTable_h
13 #define vtkCollectTable_h
14 
15 #include "vtkFiltersParallelModule.h" // For export macro
16 #include "vtkTableAlgorithm.h"
17 
18 VTK_ABI_NAMESPACE_BEGIN
21 
22 class VTKFILTERSPARALLEL_EXPORT vtkCollectTable : public vtkTableAlgorithm
23 {
24 public:
25  static vtkCollectTable* New();
27  void PrintSelf(ostream& os, vtkIndent indent) override;
28 
30 
35  vtkGetObjectMacro(Controller, vtkMultiProcessController);
37 
39 
45  vtkGetObjectMacro(SocketController, vtkSocketController);
47 
49 
52  vtkSetMacro(PassThrough, vtkTypeBool);
53  vtkGetMacro(PassThrough, vtkTypeBool);
54  vtkBooleanMacro(PassThrough, vtkTypeBool);
56 
57 protected:
59  ~vtkCollectTable() override;
60 
62 
63  // Data generation method
66 
69 
70 private:
71  vtkCollectTable(const vtkCollectTable&) = delete;
72  void operator=(const vtkCollectTable&) = delete;
73 };
74 
75 VTK_ABI_NAMESPACE_END
76 #endif
Collect distributed table.
vtkMultiProcessController * Controller
int RequestUpdateExtent(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
virtual void SetController(vtkMultiProcessController *)
By default this filter uses the global controller, but this method can be used to set another instead...
vtkTypeBool PassThrough
virtual void SetSocketController(vtkSocketController *)
When this filter is being used in client-server mode, this is the controller used to communicate betw...
~vtkCollectTable() override
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
static vtkCollectTable * New()
vtkSocketController * SocketController
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.
Process communication using Sockets.
Superclass for algorithms that produce only vtkTables as output.
int vtkTypeBool
Definition: vtkABI.h:64