VTK
vtkCollectTable.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkCollectTable.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 =========================================================================*/
15 /*----------------------------------------------------------------------------
16  Copyright (c) Sandia Corporation
17  See Copyright.txt or http://www.paraview.org/HTML/Copyright.html for details.
18 ----------------------------------------------------------------------------*/
26 #ifndef vtkCollectTable_h
27 #define vtkCollectTable_h
28 
29 #include "vtkFiltersParallelModule.h" // For export macro
30 #include "vtkTableAlgorithm.h"
31 
34 
36 {
37 public:
38  static vtkCollectTable *New();
40  void PrintSelf(ostream& os, vtkIndent indent);
41 
43 
45  virtual void SetController(vtkMultiProcessController*);
46  vtkGetObjectMacro(Controller, vtkMultiProcessController);
48 
50 
53  virtual void SetSocketController(vtkSocketController*);
54  vtkGetObjectMacro(SocketController, vtkSocketController);
56 
58 
59  vtkSetMacro(PassThrough, int);
60  vtkGetMacro(PassThrough, int);
61  vtkBooleanMacro(PassThrough, int);
63 
64 protected:
66  ~vtkCollectTable();
67 
69 
70  // Data generation method
73 
76 
77 private:
78  vtkCollectTable(const vtkCollectTable&); // Not implemented
79  void operator=(const vtkCollectTable&); // Not implemented
80 };
81 
82 #endif
Process communication using Sockets.
virtual int RequestUpdateExtent(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
void PrintSelf(ostream &os, vtkIndent indent)
static vtkTableAlgorithm * New()
Store vtkAlgorithm input/output information.
Collect distributed table.
#define VTKFILTERSPARALLEL_EXPORT
vtkMultiProcessController * Controller
a simple class to control print indentation
Definition: vtkIndent.h:38
vtkSocketController * SocketController
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
Superclass for algorithms that produce only vtkTables as output.
Store zero or more vtkInformation instances.
Multiprocessing communication superclass.