VTK  9.3.20240328
Public Types | Public Member Functions | Static Public Member Functions | Protected Member Functions | Protected Attributes | List of all members
vtkHyperTree Class Referenceabstract

A data object structured as a tree. More...

#include <vtkHyperTree.h>

Inheritance diagram for vtkHyperTree:
[legend]
Collaboration diagram for vtkHyperTree:
[legend]

Public Types

typedef vtkObject Superclass
 

Public Member Functions

virtual vtkTypeBool IsA (const char *type)
 Return 1 if this class is the same type of (or a subclass of) the named class. More...
 
vtkHyperTreeNewInstance () const
 
void PrintSelf (ostream &os, vtkIndent indent) override
 Methods invoked by print to print information about the object including superclasses. More...
 
void Initialize (unsigned char branchFactor, unsigned char dimension, unsigned char numberOfChildren)
 Restore the initial state: only one vertice is then a leaf: the root cell for the hypertree. More...
 
virtual void InitializeForReader (vtkIdType numberOfLevels, vtkIdType nbVertices, vtkIdType nbVerticesOfLastLevel, vtkBitArray *isParent, vtkBitArray *isMasked, vtkBitArray *outIsMasked)=0
 Restore a state from read data, without using a cursor Call after create hypertree with initialize. More...
 
virtual void BuildFromBreadthFirstOrderDescriptor (vtkBitArray *descriptor, vtkIdType numberOfBits, vtkIdType startIndex=0)=0
 This method builds the indexing of this tree given a breadth first order descriptor. More...
 
virtual void ComputeBreadthFirstOrderDescriptor (vtkBitArray *inputMask, vtkTypeInt64Array *numberOfVerticesPerDepth, vtkBitArray *descriptor, vtkIdList *breadthFirstIdMap)=0
 This method computes the breadth first order descriptor of the current tree. More...
 
void CopyStructure (vtkHyperTree *ht)
 Copy the structure by sharing the decomposition description of the tree. More...
 
virtual vtkHyperTreeFreeze (const char *mode)=0
 Return a freeze instance (a priori compact but potentially unmodifiable). More...
 
unsigned int GetNumberOfLevels () const
 Return the number of levels. More...
 
vtkIdType GetNumberOfVertices () const
 Return the number of all vertices (coarse and fine) in the tree. More...
 
vtkIdType GetNumberOfNodes () const
 Return the number of nodes (coarse) in the tree. More...
 
vtkIdType GetNumberOfLeaves () const
 Return the number of leaf (fine) in the tree. More...
 
int GetBranchFactor () const
 Return the branch factor of the tree. More...
 
int GetDimension () const
 Return the spatial dimension of the tree. More...
 
vtkIdType GetNumberOfChildren () const
 Return the number of children per node of the tree. More...
 
std::shared_ptr< vtkHyperTreeGridScalesInitializeScales (const double *scales, bool reinitialize=false) const
 In an hypertree, all cells are the same size by level. More...
 
virtual unsigned long GetActualMemorySizeBytes ()=0
 Return memory used in bytes. More...
 
unsigned int GetActualMemorySize ()
 Return memory used in kibibytes (1024 bytes). More...
 
virtual bool IsGlobalIndexImplicit ()=0
 Return if implicit global index mapping has been used. More...
 
virtual void SetGlobalIndexStart (vtkIdType start)=0
 Set the start implicit global index mapping for the first cell in the current tree. More...
 
vtkIdType GetGlobalIndexStart () const
 Get the start global index for the current tree for implicit global index mapping. More...
 
virtual void SetGlobalIndexFromLocal (vtkIdType index, vtkIdType global)=0
 Set the mapping between a node index in tree and a explicit global index mapping. More...
 
virtual vtkIdType GetGlobalIndexFromLocal (vtkIdType index) const =0
 Get the global id of a local node identified by index. More...
 
virtual vtkIdType GetGlobalNodeIndexMax () const =0
 Return the maximum value reached by global index mapping (implicit or explicit). More...
 
virtual bool IsLeaf (vtkIdType index) const =0
 Return if a vertice identified by index in tree as being leaf. More...
 
virtual void SubdivideLeaf (vtkIdType index, unsigned int level)=0
 Subdivide a vertice, only if its a leaf. More...
 
virtual bool IsTerminalNode (vtkIdType index) const =0
 Return if a vertice identified by index in tree as a terminal node. More...
 
virtual vtkIdType GetElderChildIndex (unsigned int index_parent) const =0
 Return the elder child index, local index node of first child, of node, coarse cell, identified by index_parent. More...
 
virtual const unsigned int * GetElderChildIndexArray (size_t &nbElements) const =0
 Return the elder child index array, internals of the tree structure Should be used with great care, for consulting and not modifying. More...
 
void SetTreeIndex (vtkIdType treeIndex)
 Set/Get tree index in hypertree grid. More...
 
vtkIdType GetTreeIndex () const
 Set/Get tree index in hypertree grid. More...
 
void GetScale (double s[3]) const
 Set/Get scale of the tree in each direction for the ground level (0). More...
 
double GetScale (unsigned int d) const
 Set/Get scale of the tree in each direction for the ground level (0). More...
 
void SetScales (std::shared_ptr< vtkHyperTreeGridScales > scales) const
 In an hypertree, all cells are the same size by level. More...
 
bool HasScales () const
 Return the existence scales. More...
 
std::shared_ptr< vtkHyperTreeGridScalesGetScales () const
 Return all scales. More...
 
- Public Member Functions inherited from vtkObject
 vtkBaseTypeMacro (vtkObject, vtkObjectBase)
 
virtual void DebugOn ()
 Turn debugging output on. More...
 
virtual void DebugOff ()
 Turn debugging output off. More...
 
bool GetDebug ()
 Get the value of the debug flag. More...
 
void SetDebug (bool debugFlag)
 Set the value of the debug flag. More...
 
virtual void Modified ()
 Update the modification time for this object. More...
 
virtual vtkMTimeType GetMTime ()
 Return this object's modified time. More...
 
void RemoveObserver (unsigned long tag)
 
void RemoveObservers (unsigned long event)
 
void RemoveObservers (const char *event)
 
void RemoveAllObservers ()
 
vtkTypeBool HasObserver (unsigned long event)
 
vtkTypeBool HasObserver (const char *event)
 
vtkTypeBool InvokeEvent (unsigned long event)
 
vtkTypeBool InvokeEvent (const char *event)
 
std::string GetObjectDescription () const override
 The object description printed in messages and PrintSelf output. More...
 
unsigned long AddObserver (unsigned long event, vtkCommand *, float priority=0.0f)
 Allow people to add/remove/invoke observers (callbacks) to any VTK object. More...
 
unsigned long AddObserver (const char *event, vtkCommand *, float priority=0.0f)
 Allow people to add/remove/invoke observers (callbacks) to any VTK object. More...
 
vtkCommandGetCommand (unsigned long tag)
 Allow people to add/remove/invoke observers (callbacks) to any VTK object. More...
 
void RemoveObserver (vtkCommand *)
 Allow people to add/remove/invoke observers (callbacks) to any VTK object. More...
 
void RemoveObservers (unsigned long event, vtkCommand *)
 Allow people to add/remove/invoke observers (callbacks) to any VTK object. More...
 
void RemoveObservers (const char *event, vtkCommand *)
 Allow people to add/remove/invoke observers (callbacks) to any VTK object. More...
 
vtkTypeBool HasObserver (unsigned long event, vtkCommand *)
 Allow people to add/remove/invoke observers (callbacks) to any VTK object. More...
 
vtkTypeBool HasObserver (const char *event, vtkCommand *)
 Allow people to add/remove/invoke observers (callbacks) to any VTK object. More...
 
template<class U , class T >
unsigned long AddObserver (unsigned long event, U observer, void(T::*callback)(), float priority=0.0f)
 Overloads to AddObserver that allow developers to add class member functions as callbacks for events. More...
 
template<class U , class T >
unsigned long AddObserver (unsigned long event, U observer, void(T::*callback)(vtkObject *, unsigned long, void *), float priority=0.0f)
 Overloads to AddObserver that allow developers to add class member functions as callbacks for events. More...
 
template<class U , class T >
unsigned long AddObserver (unsigned long event, U observer, bool(T::*callback)(vtkObject *, unsigned long, void *), float priority=0.0f)
 Allow user to set the AbortFlagOn() with the return value of the callback method. More...
 
vtkTypeBool InvokeEvent (unsigned long event, void *callData)
 This method invokes an event and return whether the event was aborted or not. More...
 
vtkTypeBool InvokeEvent (const char *event, void *callData)
 This method invokes an event and return whether the event was aborted or not. More...
 
virtual void SetObjectName (const std::string &objectName)
 Set/get the name of this object for reporting purposes. More...
 
virtual std::string GetObjectName () const
 Set/get the name of this object for reporting purposes. More...
 
- Public Member Functions inherited from vtkObjectBase
const char * GetClassName () const
 Return the class name as a string. More...
 
virtual vtkIdType GetNumberOfGenerationsFromBase (const char *name)
 Given the name of a base class of this class type, return the distance of inheritance between this class type and the named class (how many generations of inheritance are there between this class and the named class). More...
 
virtual void Delete ()
 Delete a VTK object. More...
 
virtual void FastDelete ()
 Delete a reference to this object. More...
 
void InitializeObjectBase ()
 
void Print (ostream &os)
 Print an object to an ostream. More...
 
void Register (vtkObjectBase *o)
 Increase the reference count (mark as used by another object). More...
 
virtual void UnRegister (vtkObjectBase *o)
 Decrease the reference count (release by another object). More...
 
int GetReferenceCount ()
 Return the current reference count of this object. More...
 
void SetReferenceCount (int)
 Sets the reference count. More...
 
bool GetIsInMemkind () const
 A local state flag that remembers whether this object lives in the normal or extended memory space. More...
 
virtual void PrintHeader (ostream &os, vtkIndent indent)
 Methods invoked by print to print information about the object including superclasses. More...
 
virtual void PrintTrailer (ostream &os, vtkIndent indent)
 Methods invoked by print to print information about the object including superclasses. More...
 
virtual bool UsesGarbageCollector () const
 Indicate whether the class uses vtkGarbageCollector or not. More...
 

Static Public Member Functions

static vtkTypeBool IsTypeOf (const char *type)
 
static vtkHyperTreeSafeDownCast (vtkObjectBase *o)
 
static vtkHyperTreeCreateInstance (unsigned char branchFactor, unsigned char dimension)
 Return an instance of an implementation of a hypertree for given branch factor and dimension. More...
 
- Static Public Member Functions inherited from vtkObject
static vtkObjectNew ()
 Create an object with Debug turned off, modified time initialized to zero, and reference counting on. More...
 
static void BreakOnError ()
 This method is called when vtkErrorMacro executes. More...
 
static void SetGlobalWarningDisplay (vtkTypeBool val)
 This is a global flag that controls whether any debug, warning or error messages are displayed. More...
 
static void GlobalWarningDisplayOn ()
 This is a global flag that controls whether any debug, warning or error messages are displayed. More...
 
static void GlobalWarningDisplayOff ()
 This is a global flag that controls whether any debug, warning or error messages are displayed. More...
 
static vtkTypeBool GetGlobalWarningDisplay ()
 This is a global flag that controls whether any debug, warning or error messages are displayed. More...
 
- Static Public Member Functions inherited from vtkObjectBase
static vtkTypeBool IsTypeOf (const char *name)
 Return 1 if this class type is the same type of (or a subclass of) the named class. More...
 
static vtkIdType GetNumberOfGenerationsFromBaseType (const char *name)
 Given a the name of a base class of this class type, return the distance of inheritance between this class type and the named class (how many generations of inheritance are there between this class and the named class). More...
 
static vtkObjectBaseNew ()
 Create an object with Debug turned off, modified time initialized to zero, and reference counting on. More...
 
static void SetMemkindDirectory (const char *directoryname)
 The name of a directory, ideally mounted -o dax, to memory map an extended memory space within. More...
 
static bool GetUsingMemkind ()
 A global state flag that controls whether vtkObjects are constructed in the usual way (the default) or within the extended memory space. More...
 

Protected Member Functions

virtual vtkObjectBaseNewInstanceInternal () const
 
 vtkHyperTree ()
 
 ~vtkHyperTree () override=default
 
virtual void InitializePrivate ()=0
 
virtual void PrintSelfPrivate (ostream &os, vtkIndent indent)=0
 
virtual void CopyStructurePrivate (vtkHyperTree *ht)=0
 
- Protected Member Functions inherited from vtkObject
 vtkObject ()
 
 ~vtkObject () override
 
void RegisterInternal (vtkObjectBase *, vtkTypeBool check) override
 
void UnRegisterInternal (vtkObjectBase *, vtkTypeBool check) override
 
void InternalGrabFocus (vtkCommand *mouseEvents, vtkCommand *keypressEvents=nullptr)
 These methods allow a command to exclusively grab all events. More...
 
void InternalReleaseFocus ()
 These methods allow a command to exclusively grab all events. More...
 
- Protected Member Functions inherited from vtkObjectBase
 vtkObjectBase ()
 
virtual ~vtkObjectBase ()
 
virtual void ReportReferences (vtkGarbageCollector *)
 
 vtkObjectBase (const vtkObjectBase &)
 
void operator= (const vtkObjectBase &)
 

Protected Attributes

unsigned char BranchFactor
 
unsigned char Dimension
 
unsigned char NumberOfChildren
 
std::shared_ptr< vtkHyperTreeDataDatas
 
std::shared_ptr< vtkHyperTreeGridScalesScales
 
- Protected Attributes inherited from vtkObject
bool Debug
 
vtkTimeStamp MTime
 
vtkSubjectHelper * SubjectHelper
 
std::string ObjectName
 
- Protected Attributes inherited from vtkObjectBase
std::atomic< int32_t > ReferenceCount
 
vtkWeakPointerBase ** WeakPointers
 

Additional Inherited Members

- Static Protected Member Functions inherited from vtkObjectBase
static vtkMallocingFunction GetCurrentMallocFunction ()
 
static vtkReallocingFunction GetCurrentReallocFunction ()
 
static vtkFreeingFunction GetCurrentFreeFunction ()
 
static vtkFreeingFunction GetAlternateFreeFunction ()
 

Detailed Description

A data object structured as a tree.

An hypertree grid is a dataobject containing a rectilinear grid of elements that can be either null or a hypertree. An hypertree is a dataobject describing a decomposition tree. A VERTICE is an element of this tree. A NODE, also called COARSE cell, is a specific vertice which is refined and than has either exactly f^d children, where f in {2,3} is the branching factor, the same value for all trees in this hypertree grid, and d in {1,2,3} is the spatial dimension. It is called coarse because there are smaller child cells. A LEAF, also called FINE cell, is a vertice without children, not refined. It is called fine because in the same space there are no finer cells. In a tree, we can find coarse cells smaller than fine cell but not in the same space.

Such trees have particular names for f=2:

The original octree class name came from the following paper:

* @ARTICLE{yau-srihari-1983,
*  author={Mann-May Yau and Sargur N. Srihari},
*  title={A Hierarchical Data Structure for Multidimensional Digital Images},
*  journal={Communications of the ACM},
*  month={July},
*  year={1983},
*  volume={26},
*  number={7},
*  pages={504--515}
*  }
* 

Attributes are associated with (all) cells, not with points. The attributes that are associated with coarses, it's used for LoD (Level-of-Detail). The attributes on coarse cells can be given by the code or/and computed by the use of a specific filter exploiting the values from its children (which can be leaves or not).

The geometry is implicitly given by the size of the root node on each axis and position of the origin. In fact, in 3D, the geometry is then not limited to a cube but can have a rectangular shape.

By construction, an hypertree is efficient in memory usage. The LoD feature allows for quick culling of part of the dataobject.

This is an abstract class used as a superclass by a custom templated compact class. Other versions of this code could be made available to meet other needs without questioning cursors and filters. All methods are pure virtual. This is done to hide templates.

Case octree with f=2, d=3:
For each node (coarse cell), 8 children are encoded in a child index (from 0 to 7) in the following orientation described in hypertree grid. It is easy to access each child as a cell of a grid. Note also that the binary representation is relevant, each bit codes a side: bit 0 encodes -x side (0) or +x side (1) bit 1 encodes -y side (0) or +y side (1) bit 2 encodes -z side (0) or +z side (1) -z side is first, in counter-clockwise order: 0: -y -x sides 1: -y +x sides 2: +y -x sides 3: +y +x sides +z side is last, in counter-clockwise order: 4: -y -x sides 5: -y +x sides 6: +y -x sides 7: +y +x sides
*              +y
* +-+-+        ^
* |2|3|        |
* +-+-+  O +z  +-> +x
* |0|1|
* +-+-+
*              +y
* +-+-+        ^
* |6|7|        |
* +-+-+  1 +z  +-> +x
* |4|5|
* +-+-+
* 
Case quadtree with f=2, d=2:
Just use 2 bits.
*              +y
* +-+-+        ^
* |2|3|        |
* +-+-+        +-> +x
* |0|1|
* +-+-+
* 
Case bintree with f=2, d=1:
Just use 1 bits.
*             O+-> +x
* 

It's more difficult with f=3.

Thanks:
This class was written by Philippe Pebay, Joachim Pouderoux, and Charles Law, Kitware 2013 This class was modified by Guenole Harel and Jacques-Bernard Lekien 2014 This class was modified by Philippe Pebay, 2016 Among others, this class was simplified, optimized (memory), documented and completed for to improve IO XML by Jacques-Bernard Lekien 2018-19 This work was supported by Commissariat a l'Energie Atomique CEA, DAM, DIF, F-91297 Arpajon, France.
Tests:
vtkHyperTree (Tests)

Definition at line 168 of file vtkHyperTree.h.

Member Typedef Documentation

◆ Superclass

Definition at line 171 of file vtkHyperTree.h.

Constructor & Destructor Documentation

◆ vtkHyperTree()

vtkHyperTree::vtkHyperTree ( )
protected

◆ ~vtkHyperTree()

vtkHyperTree::~vtkHyperTree ( )
overrideprotecteddefault

Member Function Documentation

◆ IsTypeOf()

static vtkTypeBool vtkHyperTree::IsTypeOf ( const char *  type)
static

◆ IsA()

virtual vtkTypeBool vtkHyperTree::IsA ( const char *  name)
virtual

Return 1 if this class is the same type of (or a subclass of) the named class.

Returns 0 otherwise. This method works in combination with vtkTypeMacro found in vtkSetGet.h.

Reimplemented from vtkObjectBase.

◆ SafeDownCast()

static vtkHyperTree* vtkHyperTree::SafeDownCast ( vtkObjectBase o)
static

◆ NewInstanceInternal()

virtual vtkObjectBase* vtkHyperTree::NewInstanceInternal ( ) const
protectedvirtual

◆ NewInstance()

vtkHyperTree* vtkHyperTree::NewInstance ( ) const

◆ PrintSelf()

void vtkHyperTree::PrintSelf ( ostream &  os,
vtkIndent  indent 
)
overridevirtual

Methods invoked by print to print information about the object including superclasses.

Typically not called by the user (use Print() instead) but used in the hierarchical print process to combine the output of several classes.

Reimplemented from vtkObject.

◆ Initialize()

void vtkHyperTree::Initialize ( unsigned char  branchFactor,
unsigned char  dimension,
unsigned char  numberOfChildren 
)

Restore the initial state: only one vertice is then a leaf: the root cell for the hypertree.

Parameters
branchFactor
dimension
numberOfChildren

◆ InitializeForReader()

virtual void vtkHyperTree::InitializeForReader ( vtkIdType  numberOfLevels,
vtkIdType  nbVertices,
vtkIdType  nbVerticesOfLastLevel,
vtkBitArray isParent,
vtkBitArray isMasked,
vtkBitArray outIsMasked 
)
pure virtual

Restore a state from read data, without using a cursor Call after create hypertree with initialize.

Parameters
numberOfLevelsthe maximum number of levels.
nbVerticesthe number of vertices of the future tree (coarse and leaves), fixed either the information loading (for load reduction) or defined by the fixed level of reader.
nbVerticesOfLastLevelthe number of vertices of last valid level.
isParenta binary decomposition tree by level with constraint all describe children. It is useless to declare all the latest values to False, especially the last level may not be defined.
isMaskeda binary mask corresponding. It is useless to declare all the latest values to False.
outIsMaskedthe mask of hypertree grid including this hypertree which is a vtkBitArray.

◆ BuildFromBreadthFirstOrderDescriptor()

virtual void vtkHyperTree::BuildFromBreadthFirstOrderDescriptor ( vtkBitArray descriptor,
vtkIdType  numberOfBits,
vtkIdType  startIndex = 0 
)
pure virtual

This method builds the indexing of this tree given a breadth first order descriptor.

This descriptor is the same bit array that would be created by ComputeBreadthFirstOrderDescriptor. The current tree is ready to use after calling this method.

Parameters
descriptoris a binary descriptor, in breadth first order, that describes the tree topology. If vertex of index id in breadth first order has children, then the corresponding value in descriptor is one. Otherwise, it is set to zero. Remember that arrays are appended, meaning that the index in descriptor corresponding to id in the current tree would be the size of descriptor before calling this method, plus id.
numberOfBitsNumber of bits to be read in the descriptor to build the tree. Remember that the last depth of the tree is not encoded in the descriptor, as we know that they are full of zeros (because leaves have no children).
startIndexInput descriptor is being read starting at this index.

◆ ComputeBreadthFirstOrderDescriptor()

virtual void vtkHyperTree::ComputeBreadthFirstOrderDescriptor ( vtkBitArray inputMask,
vtkTypeInt64Array *  numberOfVerticesPerDepth,
vtkBitArray descriptor,
vtkIdList breadthFirstIdMap 
)
pure virtual

This method computes the breadth first order descriptor of the current tree.

It takes as input the input mask inputMask which should be provided by the vtkHyperTreeGrid in which this vtkHyperTree lies. In addition to computing the descriptor, it computes the mapping between the current memory layout of this tree with the breadth first order version of it.

Outputs are numberOfVerticesPerDepth, descriptor and breadthFirstIdMap. Each of those arrays are appended with new data, so one can create one unique big array for an entire vtkHyperTreeGrid concatenating breadth first order description and mapping of concatenated trees.

Parameters
inputMaskthe mask provided by vtkHyperTreeGrid.
numberOfVerticesPerDepthis self explanatory: from depth 0 to the maximum depth of the tree, it stores the number of vertices at each depth. If the input tree has masked subtrees such that getting rid of those subtrees reduces the depth, then numberOfVerticesPerDepth will take this smaller depth into account rather than adding zeros. In other words, numberOfVerticesPerDepth cannot have zero values.
descriptoris a binary descriptor, in breadth first order, that describes the tree topology. If vertex of index id in breadth first order has children, then the corresponding value in descriptor is one. Otherwise, it is set to zero. Remember that arrays are appended, meaning that the index in descriptor corresponding to id in the current tree would be the size of descriptor before calling this method, plus id.
breadthFirstIdMapmaps breadth first ordering to current indexing of the current tree. In other word, the value at appended position id in this array gives the corresponding index in the current tree.
Warning
Masked subtrees of the input are ignored, so the topology of the output tree can differ from the input depending on that.

◆ CopyStructure()

void vtkHyperTree::CopyStructure ( vtkHyperTree ht)

Copy the structure by sharing the decomposition description of the tree.

Precondition
ht_exist: ht!=nullptr

◆ Freeze()

virtual vtkHyperTree* vtkHyperTree::Freeze ( const char *  mode)
pure virtual

Return a freeze instance (a priori compact but potentially unmodifiable).

This method is calling by the Squeeze method of hypertree grid. The mode parameter will allow to propose different instances. Today, there is none, the freeze call does not do anything.

◆ SetTreeIndex()

void vtkHyperTree::SetTreeIndex ( vtkIdType  treeIndex)
inline

Set/Get tree index in hypertree grid.

Services for internal use between hypertree grid and hypertree.

Definition at line 292 of file vtkHyperTree.h.

◆ GetTreeIndex()

vtkIdType vtkHyperTree::GetTreeIndex ( ) const
inline

Set/Get tree index in hypertree grid.

Services for internal use between hypertree grid and hypertree.

Definition at line 293 of file vtkHyperTree.h.

◆ GetNumberOfLevels()

unsigned int vtkHyperTree::GetNumberOfLevels ( ) const
inline

Return the number of levels.

Definition at line 299 of file vtkHyperTree.h.

◆ GetNumberOfVertices()

vtkIdType vtkHyperTree::GetNumberOfVertices ( ) const
inline

Return the number of all vertices (coarse and fine) in the tree.

Definition at line 308 of file vtkHyperTree.h.

◆ GetNumberOfNodes()

vtkIdType vtkHyperTree::GetNumberOfNodes ( ) const
inline

Return the number of nodes (coarse) in the tree.

Definition at line 313 of file vtkHyperTree.h.

◆ GetNumberOfLeaves()

vtkIdType vtkHyperTree::GetNumberOfLeaves ( ) const
inline

Return the number of leaf (fine) in the tree.

Definition at line 318 of file vtkHyperTree.h.

◆ GetBranchFactor()

int vtkHyperTree::GetBranchFactor ( ) const
inline

Return the branch factor of the tree.

Definition at line 326 of file vtkHyperTree.h.

◆ GetDimension()

int vtkHyperTree::GetDimension ( ) const
inline

Return the spatial dimension of the tree.

Definition at line 331 of file vtkHyperTree.h.

◆ GetNumberOfChildren()

vtkIdType vtkHyperTree::GetNumberOfChildren ( ) const
inline

Return the number of children per node of the tree.

This value is branchfactoring scale spatial dimension (f^d).

Definition at line 337 of file vtkHyperTree.h.

◆ GetScale() [1/2]

void vtkHyperTree::GetScale ( double  s[3]) const

Set/Get scale of the tree in each direction for the ground level (0).

◆ GetScale() [2/2]

double vtkHyperTree::GetScale ( unsigned int  d) const

Set/Get scale of the tree in each direction for the ground level (0).

◆ InitializeScales()

std::shared_ptr<vtkHyperTreeGridScales> vtkHyperTree::InitializeScales ( const double *  scales,
bool  reinitialize = false 
) const

In an hypertree, all cells are the same size by level.

This function initializes this cache system and is particularly used by the symmetric filter.

◆ CreateInstance()

static vtkHyperTree* vtkHyperTree::CreateInstance ( unsigned char  branchFactor,
unsigned char  dimension 
)
static

Return an instance of an implementation of a hypertree for given branch factor and dimension.

Other versions of this code could be made available to meet other needs without questioning cursors and filters. Since an instance, an other instance can be creating by call the method Freeze (by default, nothing more, instance currently is returning).

◆ GetActualMemorySizeBytes()

virtual unsigned long vtkHyperTree::GetActualMemorySizeBytes ( )
pure virtual

Return memory used in bytes.

NB: Ignore the attribute array because its size is added by the data set.

◆ GetActualMemorySize()

unsigned int vtkHyperTree::GetActualMemorySize ( )
inline

Return memory used in kibibytes (1024 bytes).

NB: Ignore the attribute array because its size is added by the data set.

Definition at line 378 of file vtkHyperTree.h.

◆ IsGlobalIndexImplicit()

virtual bool vtkHyperTree::IsGlobalIndexImplicit ( )
pure virtual

Return if implicit global index mapping has been used.

If true, the initialize has been done by SetGlobalIndexStart (one call by hypertree). If false, the initialize has been done by SetGlobalIndexFromLocal (one call by cell of hypertree). GetGlobalIndexFromLocel get the good value of global index mapping for one cell what ever the initialize metho used.

◆ SetGlobalIndexStart()

virtual void vtkHyperTree::SetGlobalIndexStart ( vtkIdType  start)
pure virtual

Set the start implicit global index mapping for the first cell in the current tree.

The implicit global index mapping of a node will be computed by this start index + the node index (local offset in tree). The node index begin by 0, the origin cell in tree. The follow values are organizing by fatrie as i to i+NumberOfChildren, for all children of one coarse cell, i is 1+8*s with s in integer. The order of fatrie depend of order to call SubdivideLeaf. This global index mapping permits to access a value of field for a cell, in implicit, the order values depends of implicit order linking with the order build of this tree. WARNING: See of hypertree grid, for to use a implicit global index mapping, you have to build hypertree by hypertree without to recome in hypertree also build. For this tree, in debug, assert is calling if tried call SetGlobalIndexFromLocal.

Precondition
not_global_index_start_if_use_global_index_from_local

◆ GetGlobalIndexStart()

vtkIdType vtkHyperTree::GetGlobalIndexStart ( ) const
inline

Get the start global index for the current tree for implicit global index mapping.

Definition at line 420 of file vtkHyperTree.h.

◆ SetGlobalIndexFromLocal()

virtual void vtkHyperTree::SetGlobalIndexFromLocal ( vtkIdType  index,
vtkIdType  global 
)
pure virtual

Set the mapping between a node index in tree and a explicit global index mapping.

This global index mapping permits to access a value of field for a cell, in explicit, the index depend of order values. For this tree, in debug, assert is calling if tried call SetGlobalIndexStart.

Precondition
not_global_index_from_local_if_use_global_index_start

◆ GetGlobalIndexFromLocal()

virtual vtkIdType vtkHyperTree::GetGlobalIndexFromLocal ( vtkIdType  index) const
pure virtual

Get the global id of a local node identified by index.

Use the explicit mapping function if available or the implicit mapping build with start global index.

Precondition
not_valid_index
not_positive_start_index (case implicit global index mapping)
not_positive_global_index (case explicit global index mapping)

◆ GetGlobalNodeIndexMax()

virtual vtkIdType vtkHyperTree::GetGlobalNodeIndexMax ( ) const
pure virtual

Return the maximum value reached by global index mapping (implicit or explicit).

◆ IsLeaf()

virtual bool vtkHyperTree::IsLeaf ( vtkIdType  index) const
pure virtual

Return if a vertice identified by index in tree as being leaf.

Precondition
not_valid_index

◆ SubdivideLeaf()

virtual void vtkHyperTree::SubdivideLeaf ( vtkIdType  index,
unsigned int  level 
)
pure virtual

Subdivide a vertice, only if its a leaf.

Precondition
not_valide_index
not_leaf

◆ IsTerminalNode()

virtual bool vtkHyperTree::IsTerminalNode ( vtkIdType  index) const
pure virtual

Return if a vertice identified by index in tree as a terminal node.

For this, all children must be all leaves.

Precondition
not_valid_index
not_valid_child_index

◆ GetElderChildIndex()

virtual vtkIdType vtkHyperTree::GetElderChildIndex ( unsigned int  index_parent) const
pure virtual

Return the elder child index, local index node of first child, of node, coarse cell, identified by index_parent.

Precondition
not_valid_index_parent Public only for entry: vtkHyperTreeGridEntry, vtkHyperTreeGridGeometryEntry, vtkHyperTreeGridGeometryLevelEntry

◆ GetElderChildIndexArray()

virtual const unsigned int* vtkHyperTree::GetElderChildIndexArray ( size_t &  nbElements) const
pure virtual

Return the elder child index array, internals of the tree structure Should be used with great care, for consulting and not modifying.

◆ SetScales()

void vtkHyperTree::SetScales ( std::shared_ptr< vtkHyperTreeGridScales scales) const
inline

In an hypertree, all cells are the same size by level.

This function initializes this cache system and is particularly used by the symmetric filter. Here, you set 'scales' since extern description (sharing).

Definition at line 492 of file vtkHyperTree.h.

◆ HasScales()

bool vtkHyperTree::HasScales ( ) const
inline

Return the existence scales.

Definition at line 499 of file vtkHyperTree.h.

◆ GetScales()

std::shared_ptr<vtkHyperTreeGridScales> vtkHyperTree::GetScales ( ) const
inline

Return all scales.

Definition at line 506 of file vtkHyperTree.h.

◆ InitializePrivate()

virtual void vtkHyperTree::InitializePrivate ( )
protectedpure virtual

◆ PrintSelfPrivate()

virtual void vtkHyperTree::PrintSelfPrivate ( ostream &  os,
vtkIndent  indent 
)
protectedpure virtual

◆ CopyStructurePrivate()

virtual void vtkHyperTree::CopyStructurePrivate ( vtkHyperTree ht)
protectedpure virtual

Member Data Documentation

◆ BranchFactor

unsigned char vtkHyperTree::BranchFactor
protected

Definition at line 525 of file vtkHyperTree.h.

◆ Dimension

unsigned char vtkHyperTree::Dimension
protected

Definition at line 528 of file vtkHyperTree.h.

◆ NumberOfChildren

unsigned char vtkHyperTree::NumberOfChildren
protected

Definition at line 531 of file vtkHyperTree.h.

◆ Datas

std::shared_ptr<vtkHyperTreeData> vtkHyperTree::Datas
protected

Definition at line 534 of file vtkHyperTree.h.

◆ Scales

std::shared_ptr<vtkHyperTreeGridScales> vtkHyperTree::Scales
mutableprotected

Definition at line 540 of file vtkHyperTree.h.


The documentation for this class was generated from the following file: