VTK
vtkUniformGridGhostDataGenerator.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkUniformGridGhostDataGenerator.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  =========================================================================*/
52 #ifndef vtkUniformGridGhostDataGenerator_h
53 #define vtkUniformGridGhostDataGenerator_h
54 
55 #include "vtkFiltersGeometryModule.h" // For export macro
57 
58 // Forward declarations
60 class vtkIndent;
62 
63 class VTKFILTERSGEOMETRY_EXPORT vtkUniformGridGhostDataGenerator :
65 {
66 public:
69  void PrintSelf(ostream& os, vtkIndent indent ) override;
70 
71 protected:
74 
79 
84 
89 
95  vtkMultiBlockDataSet *out );
96 
101  vtkMultiBlockDataSet *in, vtkMultiBlockDataSet *out) override;
102 
103  double GlobalSpacing[3];
104  double GlobalOrigin[3];
106 
107 private:
109  void operator=(const vtkUniformGridGhostDataGenerator&) = delete;
110 };
111 
112 #endif /* vtkUniformGridGhostDataGenerator_h */
vtkUniformGridGhostDataGenerator::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkUniformGridGhostDataGenerator::vtkUniformGridGhostDataGenerator
vtkUniformGridGhostDataGenerator()
vtkUniformGridGhostDataGenerator::~vtkUniformGridGhostDataGenerator
~vtkUniformGridGhostDataGenerator() override
vtkUniformGridGhostDataGenerator
A concrete implementation of vtkDataSetGhostGenerator for generating ghost data on partitioned unifor...
Definition: vtkUniformGridGhostDataGenerator.h:65
vtkMultiBlockDataSet
Composite dataset that organizes datasets into blocks.
Definition: vtkMultiBlockDataSet.h:52
vtkUniformGridGhostDataGenerator::ComputeGlobalSpacingVector
void ComputeGlobalSpacingVector(vtkMultiBlockDataSet *in)
Computes the global spacing vector.
vtkUniformGridGhostDataGenerator::CreateGhostedDataSet
void CreateGhostedDataSet(vtkMultiBlockDataSet *in, vtkMultiBlockDataSet *out)
Creates the output.
vtkStructuredGridConnectivity
vtkStructuredGridConnectivity is a concrete instance of vtkObject that implements functionality for c...
Definition: vtkStructuredGridConnectivity.h:62
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:40
vtkUniformGridGhostDataGenerator::New
static vtkUniformGridGhostDataGenerator * New()
vtkDataSetGhostGenerator.h
vtkUniformGridGhostDataGenerator::GenerateGhostLayers
void GenerateGhostLayers(vtkMultiBlockDataSet *in, vtkMultiBlockDataSet *out) override
Generates ghost layers.
vtkUniformGridGhostDataGenerator::RegisterGrids
void RegisterGrids(vtkMultiBlockDataSet *in)
Registers the grid associated with this instance of multi-block.
vtkUniformGridGhostDataGenerator::ComputeOrigin
void ComputeOrigin(vtkMultiBlockDataSet *in)
Computes the global origin.
vtkUniformGridGhostDataGenerator::GridConnectivity
vtkStructuredGridConnectivity * GridConnectivity
Definition: vtkUniformGridGhostDataGenerator.h:105
vtkDataSetGhostGenerator
An abstract class that provides common functionality and implements an interface for all ghost data g...
Definition: vtkDataSetGhostGenerator.h:44