28#ifndef vtkHyperTreeGridGradient_h
29#define vtkHyperTreeGridGradient_h
31#include "vtkFiltersHyperTreeModule.h"
39VTK_ABI_NAMESPACE_BEGIN
64 vtkSetMacro(ComputeGradient,
bool);
65 vtkGetMacro(ComputeGradient,
bool);
66 vtkBooleanMacro(ComputeGradient,
bool);
73 vtkSetStringMacro(GradientArrayName);
74 vtkGetStringMacro(GradientArrayName);
84 vtkSetClampMacro(Mode,
int, UNLIMITED, UNSTRUCTURED);
85 vtkGetMacro(Mode,
int);
94 vtkSetMacro(ExtensiveComputation,
bool);
95 vtkGetMacro(ExtensiveComputation,
bool);
96 vtkBooleanMacro(ExtensiveComputation,
bool);
104 vtkSetMacro(ComputeDivergence,
bool);
105 vtkGetMacro(ComputeDivergence,
bool);
106 vtkBooleanMacro(ComputeDivergence,
bool);
113 vtkSetStringMacro(DivergenceArrayName);
114 vtkGetStringMacro(DivergenceArrayName);
122 vtkSetMacro(ComputeVorticity,
bool);
123 vtkGetMacro(ComputeVorticity,
bool);
124 vtkBooleanMacro(ComputeVorticity,
bool);
131 vtkSetStringMacro(VorticityArrayName);
132 vtkGetStringMacro(VorticityArrayName);
140 vtkSetMacro(ComputeQCriterion,
bool);
141 vtkGetMacro(ComputeQCriterion,
bool);
142 vtkBooleanMacro(ComputeQCriterion,
bool);
149 vtkSetStringMacro(QCriterionArrayName);
150 vtkGetStringMacro(QCriterionArrayName);
166 template <
class Cursor,
class GradWorker>
173 template <
class FieldsWorker>
180 bool ComputeGradient =
true;
182 char* GradientArrayName = strdup(
"Gradient");
183 int Mode = ComputeMode::UNLIMITED;
184 bool ExtensiveComputation =
false;
187 bool ComputeDivergence =
false;
189 char* DivergenceArrayName = strdup(
"Divergence");
192 bool ComputeVorticity =
false;
194 char* VorticityArrayName = strdup(
"Vorticity");
197 bool ComputeQCriterion =
false;
199 char* QCriterionArrayName = strdup(
"QCriterion");
dynamic, self-adjusting array of bits
general representation of visualization data
dynamic, self-adjusting array of double
Superclass for algorithms that produce a hyper tree grid as output.
Compute the gradient of a scalar field on a Hyper Tree Grid.
vtkNew< vtkDoubleArray > OutQCritArray
void RecursivelyProcessGradientTree(Cursor *, GradWorker &)
Recursively descend into tree down to leaves to compute gradient Uses a heavy supercursor.
vtkNew< vtkDoubleArray > OutGradArray
vtkNew< vtkDoubleArray > OutVortArray
vtkSmartPointer< vtkDataArray > InArray
Keep track of selected input scalars / vectors.
vtkHyperTreeGridGradient()
vtkNew< vtkDoubleArray > OutDivArray
int ProcessTrees(vtkHyperTreeGrid *, vtkDataObject *) override
Main routine to generate gradient of hyper tree grid.
static vtkHyperTreeGridGradient * New()
~vtkHyperTreeGridGradient() override
void ProcessFields(FieldsWorker &)
Compute Vorticity, Divergence and QCriterion upon request, from the Gradient cell array.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
Objects for traversal a HyperTreeGrid.
A dataset containing a grid of vtkHyperTree instances arranged as a rectilinear grid.
a simple class to control print indentation
Allocate and hold a VTK object.
Hold a reference to a vtkObjectBase instance.
dynamic, self-adjusting array of unsigned char