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 ----------------------------------------------------------------------------*/
27 #ifndef vtkCollectTable_h
28 #define vtkCollectTable_h
29 
30 #include "vtkFiltersParallelModule.h" // For export macro
31 #include "vtkTableAlgorithm.h"
32 
35 
36 class VTKFILTERSPARALLEL_EXPORT vtkCollectTable : public vtkTableAlgorithm
37 {
38 public:
39  static vtkCollectTable *New();
41  void PrintSelf(ostream& os, vtkIndent indent);
42 
44 
49  vtkGetObjectMacro(Controller, vtkMultiProcessController);
51 
53 
59  vtkGetObjectMacro(SocketController, vtkSocketController);
61 
63 
66  vtkSetMacro(PassThrough, int);
67  vtkGetMacro(PassThrough, int);
68  vtkBooleanMacro(PassThrough, int);
70 
71 protected:
74 
76 
77  // Data generation method
80 
83 
84 private:
85  vtkCollectTable(const vtkCollectTable&) VTK_DELETE_FUNCTION;
86  void operator=(const vtkCollectTable&) VTK_DELETE_FUNCTION;
87 };
88 
89 #endif
vtkCollectTable::RequestData
virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
This is called by the superclass.
vtkCollectTable::SetSocketController
virtual void SetSocketController(vtkSocketController *)
When this filter is being used in client-server mode, this is the controller used to communicate betw...
vtkCollectTable::SocketController
vtkSocketController * SocketController
Definition: vtkCollectTable.h:82
vtkInformationVector
Store zero or more vtkInformation instances.
Definition: vtkInformationVector.h:42
vtkCollectTable
Collect distributed table.
Definition: vtkCollectTable.h:37
vtkCollectTable::~vtkCollectTable
~vtkCollectTable()
vtkCollectTable::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent)
Methods invoked by print to print information about the object including superclasses.
vtkTableAlgorithm
Superclass for algorithms that produce only vtkTables as output.
Definition: vtkTableAlgorithm.h:49
vtkCollectTable::vtkCollectTable
vtkCollectTable()
vtkMultiProcessController
Multiprocessing communication superclass.
Definition: vtkMultiProcessController.h:83
vtkCollectTable::Controller
vtkMultiProcessController * Controller
Definition: vtkCollectTable.h:81
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:40
vtkCollectTable::New
static vtkCollectTable * New()
vtkCollectTable::PassThrough
int PassThrough
Definition: vtkCollectTable.h:75
vtkBooleanMacro
vtkBooleanMacro(IgnoreDriverBugs, bool)
Updates the extensions string.
vtkInformation
Store vtkAlgorithm input/output information.
Definition: vtkInformation.h:87
vtkSetMacro
vtkSetMacro(IgnoreDriverBugs, bool)
Updates the extensions string.
vtkCollectTable::RequestUpdateExtent
virtual int RequestUpdateExtent(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
This is called by the superclass.
vtkTableAlgorithm.h
vtkCollectTable::SetController
virtual void SetController(vtkMultiProcessController *)
By defualt this filter uses the global controller, but this method can be used to set another instead...
vtkSocketController
Process communication using Sockets.
Definition: vtkSocketController.h:53