VTK  9.1.0
vtkAMRUtilities.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkAMRUtilities.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  =========================================================================*/
65 #ifndef vtkAMRUtilities_h
66 #define vtkAMRUtilities_h
67 
68 #include "vtkCommonDataModelModule.h" // For export macro
69 #include "vtkObject.h"
70 #include <vector> // For C++ vector
71 
72 // Forward declarations
73 class vtkDataArray;
74 class vtkFieldData;
75 class vtkOverlappingAMR;
76 class vtkUniformGrid;
78 
79 class VTKCOMMONDATAMODEL_EXPORT vtkAMRUtilities : public vtkObject
80 {
81 public:
82  // Standard Routines
83  vtkTypeMacro(vtkAMRUtilities, vtkObject);
84  void PrintSelf(ostream& os, vtkIndent indent) override;
85 
95  static void StripGhostLayers(
96  vtkOverlappingAMR* ghostedAMRData, vtkOverlappingAMR* strippedAMRData);
97 
105 
109  static void BlankCells(vtkOverlappingAMR* amr);
110 
111 protected:
112  vtkAMRUtilities() = default;
113  ~vtkAMRUtilities() override = default;
114 
120  int realExtent[6], vtkUniformGrid* ghostedGrid, vtkUniformGrid* strippedGrid);
121 
125  static void CopyFieldData(
126  vtkFieldData* target, vtkIdType targetIdx, vtkFieldData* source, vtkIdType sourceIdx);
127 
136 
137  static void BlankGridsAtLevel(vtkOverlappingAMR* amr, int levelIdx,
138  std::vector<std::vector<unsigned int>>& children, const std::vector<int>& processMap);
139 
140 private:
141  vtkAMRUtilities(const vtkAMRUtilities&) = delete;
142  void operator=(const vtkAMRUtilities&) = delete;
143 
144  static void MergeGhostArrays(vtkDataArray* existingArray, vtkUnsignedCharArray* ghosts);
145 };
146 
147 #endif /* vtkAMRUtilities_h */
A concrete instance of vtkObject that employs a singleton design pattern and implements functionality...
static void StripGhostLayers(vtkOverlappingAMR *ghostedAMRData, vtkOverlappingAMR *strippedAMRData)
This method detects and strips partially overlapping cells from a given AMR dataset.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
~vtkAMRUtilities() override=default
static void CopyFieldData(vtkFieldData *target, vtkIdType targetIdx, vtkFieldData *source, vtkIdType sourceIdx)
Copies the fields from the given source to the given target.
static void CopyFieldsWithinRealExtent(int realExtent[6], vtkUniformGrid *ghostedGrid, vtkUniformGrid *strippedGrid)
Given the real-extent w.r.t.
static void BlankCells(vtkOverlappingAMR *amr)
Blank cells in overlapping AMR.
static bool HasPartiallyOverlappingGhostCells(vtkOverlappingAMR *amr)
A quick test of whether partially overlapping ghost cells exist.
vtkAMRUtilities()=default
static vtkUniformGrid * StripGhostLayersFromGrid(vtkUniformGrid *grid, int ghost[6])
Strips ghost layers from the given grid according to the given ghost vector which encodes the number ...
static void BlankGridsAtLevel(vtkOverlappingAMR *amr, int levelIdx, std::vector< std::vector< unsigned int >> &children, const std::vector< int > &processMap)
abstract superclass for arrays of numeric data
Definition: vtkDataArray.h:159
represent and manipulate fields of data
Definition: vtkFieldData.h:164
a simple class to control print indentation
Definition: vtkIndent.h:113
abstract base class for most VTK objects
Definition: vtkObject.h:73
hierarchical dataset of vtkUniformGrids
image data with blanking
dynamic, self-adjusting array of unsigned char
@ vector
Definition: vtkX3D.h:243
boost::graph_traits< vtkGraph * >::vertex_descriptor source(boost::graph_traits< vtkGraph * >::edge_descriptor e, vtkGraph *)
boost::graph_traits< vtkGraph * >::vertex_descriptor target(boost::graph_traits< vtkGraph * >::edge_descriptor e, vtkGraph *)
int vtkIdType
Definition: vtkType.h:332