62 #ifndef vtkHyperTreeGridEvaluateCoarse_h
63 #define vtkHyperTreeGridEvaluateCoarse_h
65 #include "vtkFiltersHyperTreeModule.h"
70 VTK_ABI_NAMESPACE_BEGIN
82 OPERATOR_DON_T_CHANGE_FAST = 0,
83 OPERATOR_DON_T_CHANGE = 1,
88 OPERATOR_UNMASKED_AVERAGE = 6,
89 OPERATOR_ELDER_CHILD = 7,
90 OPERATOR_SPLATTING_AVERAGE = 8
101 vtkSetMacro(Operator,
unsigned int);
102 vtkGetMacro(Operator,
unsigned int);
109 vtkSetMacro(Default,
double);
141 virtual double EvalCoarse(
const std::vector<double>&);
143 virtual double Min(
const std::vector<double>&);
144 virtual double Max(
const std::vector<double>&);
145 virtual double Sum(
const std::vector<double>&);
146 virtual double Average(
const std::vector<double>&);
147 virtual double UnmaskedAverage(
const std::vector<double>&);
148 virtual double ElderChild(
const std::vector<double>&);
149 virtual double SplattingAverage(
const std::vector<double>&);
153 unsigned int Operator;
157 unsigned int BranchFactor;
158 unsigned int Dimension;
159 unsigned int SplattingFactor;
161 unsigned int NumberOfChildren;
166 VTK_ABI_NAMESPACE_END
167 #endif // vtkHyperTreeGridEvaluateCoarse_h
int FillOutputPortInformation(int, vtkInformation *) override
Define default input and output port types.
A dataset containing a grid of vtkHyperTree instances arranged as a rectilinear grid.
Objects for traversal a HyperTreeGrid.
a simple class to control print indentation
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
dynamic, self-adjusting array of bits
Superclass for algorithms that produce a hyper tree grid as output.
static vtkAlgorithm * New()
The value of the parent cell is determined from an operation defined on the values of the child cells...
general representation of visualization data
virtual int ProcessTrees(vtkHyperTreeGrid *, vtkDataObject *)=0
Main routine to process individual trees in the grid This is pure virtual method to be implemented by...