VTK
vtkStructuredGridPartitioner.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkStructuredGridPartitioner.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  =========================================================================*/
30 #ifndef VTKSTRUCTUREDGRIDPARTITIONER_H_
31 #define VTKSTRUCTUREDGRIDPARTITIONER_H_
32 
33 #include "vtkFiltersGeometryModule.h" // For export macro
35 
36 class vtkInformation;
38 class vtkIndent;
39 class vtkStructuredGrid;
40 class vtkPoints;
41 
44 {
45 public:
48  void PrintSelf(ostream &oss, vtkIndent indent );
49 
51 
52  vtkGetMacro(NumberOfPartitions,int);
53  vtkSetMacro(NumberOfPartitions,int);
55 
57 
58  vtkGetMacro(NumberOfGhostLayers,int);
59  vtkSetMacro(NumberOfGhostLayers,int);
61 
63 
64  vtkGetMacro(DuplicateNodes,int);
65  vtkSetMacro(DuplicateNodes,int);
66  vtkBooleanMacro(DuplicateNodes,int);
68 
69 protected:
72 
74  vtkPoints* ExtractSubGridPoints(vtkStructuredGrid *wholeGrid,int subext[6]);
75 
76  // Standard Pipeline methods
77  virtual int RequestData(
81 
85 
86 private:
88  void operator=(const vtkStructuredGridPartitioner &); // Not implemented
89 };
90 
91 #endif /* VTKSTRUCTUREDGRIDPARTITIONER_H_ */
vtkPoints
represent and manipulate 3D points
Definition: vtkPoints.h:39
vtkStructuredGridPartitioner
Definition: vtkStructuredGridPartitioner.h:44
vtkStructuredGridPartitioner::PrintSelf
void PrintSelf(ostream &oss, vtkIndent indent)
vtkFiltersGeometryModule.h
VTKFILTERSGEOMETRY_EXPORT
#define VTKFILTERSGEOMETRY_EXPORT
Definition: vtkFiltersGeometryModule.h:15
vtkInformationVector
Store zero or more vtkInformation instances.
Definition: vtkInformationVector.h:41
vtkTypeMacro
#define vtkTypeMacro(thisClass, superclass)
Definition: vtkSetGet.h:642
vtkStructuredGrid
topologically regular array of data
Definition: vtkStructuredGrid.h:63
vtkStructuredGridPartitioner::DuplicateNodes
int DuplicateNodes
Definition: vtkStructuredGridPartitioner.h:84
vtkX3D::port
@ port
Definition: vtkX3D.h:447
vtkStructuredGridPartitioner::FillInputPortInformation
virtual int FillInputPortInformation(int port, vtkInformation *info)
vtkStructuredGridPartitioner::FillOutputPortInformation
virtual int FillOutputPortInformation(int port, vtkInformation *info)
vtkStructuredGridPartitioner::NumberOfGhostLayers
int NumberOfGhostLayers
Definition: vtkStructuredGridPartitioner.h:83
vtkStructuredGridPartitioner::ExtractSubGridPoints
vtkPoints * ExtractSubGridPoints(vtkStructuredGrid *wholeGrid, int subext[6])
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:39
vtkMultiBlockDataSetAlgorithm.h
vtkGetMacro
#define vtkGetMacro(name, type)
Definition: vtkSetGet.h:93
vtkStructuredGridPartitioner::RequestData
virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
vtkBooleanMacro
vtkBooleanMacro(IgnoreDriverBugs, bool)
vtkInformation
Store vtkAlgorithm input/output information.
Definition: vtkInformation.h:86
vtkSetMacro
vtkSetMacro(IgnoreDriverBugs, bool)
vtkX3D::info
@ info
Definition: vtkX3D.h:376
vtkStructuredGridPartitioner::vtkStructuredGridPartitioner
vtkStructuredGridPartitioner()
vtkStructuredGridPartitioner::NumberOfPartitions
int NumberOfPartitions
Definition: vtkStructuredGridPartitioner.h:82
vtkStructuredGridPartitioner::~vtkStructuredGridPartitioner
virtual ~vtkStructuredGridPartitioner()
vtkStructuredGridPartitioner::New
static vtkStructuredGridPartitioner * New()
vtkMultiBlockDataSetAlgorithm
Superclass for algorithms that produce only vtkMultiBlockDataSet as output.
Definition: vtkMultiBlockDataSetAlgorithm.h:32