VTK  9.4.20241222
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
18VTK_ABI_NAMESPACE_BEGIN
21
22class VTKFILTERSPARALLEL_EXPORT vtkCollectTable : public vtkTableAlgorithm
23{
24public:
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
57protected:
59 ~vtkCollectTable() override;
60
62
63 // Data generation method
66
69
70private:
71 vtkCollectTable(const vtkCollectTable&) = delete;
72 void operator=(const vtkCollectTable&) = delete;
73};
74
75VTK_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
static vtkCollectTable * New()
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.
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