30#ifndef vtkHyperTreeGridThreshold_h
31#define vtkHyperTreeGridThreshold_h
33#include "vtkFiltersHyperTreeModule.h"
39VTK_ABI_NAMESPACE_BEGIN
56 vtkSetMacro(LowerThreshold,
double);
57 vtkGetMacro(LowerThreshold,
double);
64 vtkSetMacro(UpperThreshold,
double);
65 vtkGetMacro(UpperThreshold,
double);
85 CopyStructureAndIndexArrays = 1,
93 vtkGetMacro(MemoryStrategy,
int);
94 vtkSetClampMacro(MemoryStrategy,
int, MaskInput, DeepThreshold);
171 void SafeInsertOutMask(
vtkIdType tupleIdx,
double value);
173 int MemoryStrategy = MaskInput;
174 std::vector<std::mutex> OutMaskMutexes;
175 int ArrayMutexSize = 0;
178 std::unique_ptr<Internals> Internal;
dynamic, self-adjusting array of bits
abstract superclass for arrays of numeric data
general representation of visualization data
Superclass for algorithms that produce a hyper tree grid as output.
Objects for traversal a HyperTreeGrid.
Extract cells from a hyper tree grid where selected scalar value is within given range.
vtkIdType CurrentId
Keep track of current index in output hyper tree grid.
bool RecursivelyProcessTree(vtkHyperTreeGridNonOrientedCursor *, vtkHyperTreeGridNonOrientedCursor *)
Recursively descend into input tree down to leaves, creating output structure at the same time.
static vtkHyperTreeGridThreshold * New()
double LowerThreshold
LowerThreshold scalar value to be accepted.
vtkBitArray * InMask
Input material mask.
MemoryStrategyChoice
Enum for defining the strategy to take in allocating the memory used by the output.
~vtkHyperTreeGridThreshold() override
int FillOutputPortInformation(int, vtkInformation *) override
For this algorithm the output is a vtkHyperTreeGrid instance.
bool JustCreateNewMask
With or without copy (deprecated in favor of MemoryStrategy)
vtkBitArray * OutMask
Output material mask constructed by this filter.
bool RecursivelyProcessTreeWithCreateNewMask(vtkHyperTreeGridNonOrientedCursor *)
Recursively descend into input tree down to leaves, filling the output mask as it goes.
double UpperThreshold
UpperThreshold scalar value to be accepted.
vtkDataArray * InScalars
Keep track of selected input scalars.
void ThresholdBetween(double, double)
Convenience method to set both threshold values at once.
vtkHyperTreeGridThreshold()
int ProcessTrees(vtkHyperTreeGrid *, vtkDataObject *) override
Main routine to extract cells based on thresholded value.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
A dataset containing a grid of vtkHyperTree instances arranged as a rectilinear grid.
a simple class to control print indentation