VTK  9.4.20250403
vtkHyperTreeGridValidCellStrategy.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2// SPDX-License-Identifier: BSD-3-Clause
14#ifndef vtkHyperTreeGridValidCellStrategy_h
15#define vtkHyperTreeGridValidCellStrategy_h
16
17#include "vtkFiltersHyperTreeModule.h" // For export macro
19#include "vtkNew.h"
20
21VTK_ABI_NAMESPACE_BEGIN
22
23class vtkBitArray;
25
26class VTKFILTERSHYPERTREE_EXPORT vtkHyperTreeGridValidCellStrategy
28{
29public:
32 void PrintSelf(ostream& os, vtkIndent indent) override;
33
38 void Initialize(vtkHyperTreeGrid* inputHTG) override;
39
46
51
52private:
55
56 // Input data
57 vtkUnsignedCharArray* InputGhost = nullptr;
58
59 // Output array
60 vtkNew<vtkBitArray> ValidCellsArray;
61};
62
63VTK_ABI_NAMESPACE_END
64#endif // vtkHyperTreeGridValidCellStrategy_h
dynamic, self-adjusting array of bits
Definition vtkBitArray.h:29
abstract superclass for arrays of numeric data
Abstract class for field definition used by vtkHyperTreeGridGenerateFields.
virtual void Compute(vtkHyperTreeGridNonOrientedGeometryCursor *)
Reimplement to compute the data for the current cell.
virtual void Initialize(vtkHyperTreeGrid *vtkMaybeUnused(inputHTG))
Reimplement to initialize internal structures based on the given input HTG.
Define the ValidCell field used in vtkHyperTreeGridGenerateFields.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
void Initialize(vtkHyperTreeGrid *inputHTG) override
Init internal variables from inputHTG.
static vtkHyperTreeGridValidCellStrategy * New()
void Compute(vtkHyperTreeGridNonOrientedGeometryCursor *cursor) override
Compute validity of the current cell.
vtkDataArray * GetAndFinalizeArray() override
Return a vtkBitArray containing the validity of each cell.
A dataset containing a grid of vtkHyperTree instances arranged as a rectilinear grid.
a simple class to control print indentation
Definition vtkIndent.h:108
Allocate and hold a VTK object.
Definition vtkNew.h:167
dynamic, self-adjusting array of unsigned char