VTK
vtkCollectGraph.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkCollectGraph.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 vtkCollectGraph_h
28 #define vtkCollectGraph_h
29 
30 #include "vtkFiltersParallelModule.h" // For export macro
31 #include "vtkGraphAlgorithm.h"
32 
35 
36 class VTKFILTERSPARALLEL_EXPORT vtkCollectGraph : public vtkGraphAlgorithm
37 {
38 public:
39  static vtkCollectGraph *New();
41  void PrintSelf(ostream& os, vtkIndent indent);
42 
44 
48  virtual void SetController(vtkMultiProcessController*);
49  vtkGetObjectMacro(Controller, vtkMultiProcessController);
51 
53 
58  virtual void SetSocketController(vtkSocketController*);
59  vtkGetObjectMacro(SocketController, vtkSocketController);
61 
63 
66  vtkSetMacro(PassThrough, int);
67  vtkGetMacro(PassThrough, int);
68  vtkBooleanMacro(PassThrough, int);
70 
71  enum {
74  USE_INPUT_TYPE
75  };
76 
78 
86  vtkSetMacro(OutputType, int);
87  vtkGetMacro(OutputType, int);
89 
90 protected:
92  ~vtkCollectGraph();
93 
96 
97  // Data generation method
101 
104 
105 private:
106  vtkCollectGraph(const vtkCollectGraph&) VTK_DELETE_FUNCTION;
107  void operator=(const vtkCollectGraph&) VTK_DELETE_FUNCTION;
108 };
109 
110 #endif
static vtkGraphAlgorithm * New()
Process communication using Sockets.
virtual int RequestUpdateExtent(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
This is called by the superclass.
Store vtkAlgorithm input/output information.
Collect distributed graph.
Superclass for algorithms that produce only graph as output.
a simple class to control print indentation
Definition: vtkIndent.h:39
virtual int RequestDataObject(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkSetMacro(IgnoreDriverBugs, bool)
When set known driver bugs are ignored during driver feature detection.
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
This is called by the superclass.
vtkSocketController * SocketController
vtkMultiProcessController * Controller
Store zero or more vtkInformation instances.
vtkBooleanMacro(IgnoreDriverBugs, bool)
When set known driver bugs are ignored during driver feature detection.
Multiprocessing communication superclass.