VTK
vtkDataSetGhostGenerator.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkDataSetGhostGenerator.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  =========================================================================*/
31 #ifndef vtkDataSetGhostGenerator_h
32 #define vtkDataSetGhostGenerator_h
33 
34 #include "vtkFiltersGeometryModule.h" // For export macro
36 
37 // Forward Declarations
38 class vtkInformation;
41 
42 class VTKFILTERSGEOMETRY_EXPORT vtkDataSetGhostGenerator:
44 {
45 public:
47  void PrintSelf(ostream& os, vtkIndent indent) override;
48 
50 
53  vtkSetMacro( NumberOfGhostLayers, int );
54  vtkGetMacro( NumberOfGhostLayers, int );
56 
57  // Standard VTK pipeline routines
60 
62  vtkInformation *rqst, vtkInformationVector **inputVector,
63  vtkInformationVector* outputVector ) override;
64 
65 protected:
68 
72  virtual void GenerateGhostLayers(
74 
75 
77 
78 private:
80  void operator=(const vtkDataSetGhostGenerator&) = delete;
81 
82 };
83 
84 #endif /* vtkDataSetGhostGenerator_h */
vtkDataSetGhostGenerator::FillOutputPortInformation
int FillOutputPortInformation(int port, vtkInformation *info) override
Fill the output port information objects for this algorithm.
vtkInformationVector
Store zero or more vtkInformation instances.
Definition: vtkInformationVector.h:42
vtkDataSetGhostGenerator::FillInputPortInformation
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.
vtkMultiBlockDataSet
Composite dataset that organizes datasets into blocks.
Definition: vtkMultiBlockDataSet.h:52
vtkDataSetGhostGenerator::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkX3D::port
@ port
Definition: vtkX3D.h:447
vtkDataSetGhostGenerator::NumberOfGhostLayers
int NumberOfGhostLayers
Definition: vtkDataSetGhostGenerator.h:76
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:40
vtkMultiBlockDataSetAlgorithm.h
vtkDataSetGhostGenerator::GenerateGhostLayers
virtual void GenerateGhostLayers(vtkMultiBlockDataSet *in, vtkMultiBlockDataSet *out)=0
Generate ghost layers.
vtkInformation
Store vtkAlgorithm input/output information.
Definition: vtkInformation.h:87
vtkX3D::info
@ info
Definition: vtkX3D.h:376
vtkDataSetGhostGenerator::RequestData
int RequestData(vtkInformation *rqst, vtkInformationVector **inputVector, vtkInformationVector *outputVector) override
This is called by the superclass.
vtkDataSetGhostGenerator::vtkDataSetGhostGenerator
vtkDataSetGhostGenerator()
vtkDataSetGhostGenerator::~vtkDataSetGhostGenerator
~vtkDataSetGhostGenerator() override
vtkDataSetGhostGenerator
Definition: vtkDataSetGhostGenerator.h:44
vtkMultiBlockDataSetAlgorithm
Superclass for algorithms that produce only vtkMultiBlockDataSet as output.
Definition: vtkMultiBlockDataSetAlgorithm.h:36