vtkSimpleScalarTree Class Reference

#include <vtkSimpleScalarTree.h>

Inheritance diagram for vtkSimpleScalarTree:

Inheritance graph
[legend]
Collaboration diagram for vtkSimpleScalarTree:

Collaboration graph
[legend]

List of all members.


Detailed Description

organize data according to scalar values (used to accelerate contouring operations)

vtkSimpleScalarTree creates a pointerless binary tree that helps search for cells that lie within a particular scalar range. This object is used to accelerate some contouring (and other scalar-based techniques).

The tree consists of an array of (min,max) scalar range pairs per node in the tree. The (min,max) range is determined from looking at the range of the children of the tree node. If the node is a leaf, then the range is determined by scanning the range of scalar data in n cells in the dataset. The n cells are determined by arbitrary selecting cell ids from id(i) to id(i+n), and where n is specified using the BranchingFactor ivar. Note that leaf node i=0 contains the scalar range computed from cell ids (0,n-1); leaf node i=1 contains the range from cell ids (n,2n-1); and so on. The implication is that there are no direct lists of cell ids per leaf node, instead the cell ids are implicitly known.

Definition at line 43 of file vtkSimpleScalarTree.h.

typedef vtkScalarTree Superclass
static int IsTypeOf (const char *type)
static vtkSimpleScalarTreeSafeDownCast (vtkObject *o)
virtual const char * GetClassName ()
virtual int IsA (const char *type)
void PrintSelf (ostream &os, vtkIndent indent)

Public Member Functions

virtual void BuildTree ()
virtual void Initialize ()
virtual void InitTraversal (double scalarValue)
virtual void SetBranchingFactor (int)
virtual int GetBranchingFactor ()
virtual int GetLevel ()
virtual void SetMaxLevel (int)
virtual int GetMaxLevel ()
virtual vtkCellGetNextCell (vtkIdType &cellId, vtkIdList *&ptIds, vtkDataArray *cellScalars)

Static Public Member Functions

static vtkSimpleScalarTreeNew ()

Protected Member Functions

 vtkSimpleScalarTree ()
 ~vtkSimpleScalarTree ()

Protected Attributes

vtkDataArrayScalars
int MaxLevel
int Level
int BranchingFactor
vtkScalarNode * Tree
int TreeSize

Member Typedef Documentation

Standard type related macros and PrintSelf() method.

Reimplemented from vtkScalarTree.

Definition at line 52 of file vtkSimpleScalarTree.h.


Constructor & Destructor Documentation

vtkSimpleScalarTree::vtkSimpleScalarTree (  )  [protected]

vtkSimpleScalarTree::~vtkSimpleScalarTree (  )  [protected]


Member Function Documentation

static vtkSimpleScalarTree* vtkSimpleScalarTree::New (  )  [static]

Instantiate scalar tree with maximum level of 20 and branching factor of 5.

Reimplemented from vtkObject.

virtual const char* vtkSimpleScalarTree::GetClassName (  )  [virtual]

Standard type related macros and PrintSelf() method.

Reimplemented from vtkScalarTree.

static int vtkSimpleScalarTree::IsTypeOf ( const char *  type  )  [static]

Standard type related macros and PrintSelf() method.

Reimplemented from vtkScalarTree.

virtual int vtkSimpleScalarTree::IsA ( const char *  type  )  [virtual]

Standard type related macros and PrintSelf() method.

Reimplemented from vtkScalarTree.

static vtkSimpleScalarTree* vtkSimpleScalarTree::SafeDownCast ( vtkObject o  )  [static]

Standard type related macros and PrintSelf() method.

Reimplemented from vtkScalarTree.

void vtkSimpleScalarTree::PrintSelf ( ostream &  os,
vtkIndent  indent 
) [virtual]

Standard type related macros and PrintSelf() method.

Reimplemented from vtkScalarTree.

virtual void vtkSimpleScalarTree::SetBranchingFactor ( int   )  [virtual]

Set the branching factor for the tree. This is the number of children per tree node. Smaller values (minimum is 2) mean deeper trees and more memory overhead. Larger values mean shallower trees, less memory usage, but worse performance.

virtual int vtkSimpleScalarTree::GetBranchingFactor (  )  [virtual]

Set the branching factor for the tree. This is the number of children per tree node. Smaller values (minimum is 2) mean deeper trees and more memory overhead. Larger values mean shallower trees, less memory usage, but worse performance.

virtual int vtkSimpleScalarTree::GetLevel (  )  [virtual]

Get the level of the scalar tree. This value may change each time the scalar tree is built and the branching factor changes.

virtual void vtkSimpleScalarTree::SetMaxLevel ( int   )  [virtual]

Set the maximum allowable level for the tree.

virtual int vtkSimpleScalarTree::GetMaxLevel (  )  [virtual]

Set the maximum allowable level for the tree.

virtual void vtkSimpleScalarTree::BuildTree (  )  [virtual]

Construct the scalar tree from the dataset provided. Checks build times and modified time from input and reconstructs the tree if necessary.

Implements vtkScalarTree.

virtual void vtkSimpleScalarTree::Initialize (  )  [virtual]

Initialize locator. Frees memory and resets object as appropriate.

Implements vtkScalarTree.

virtual void vtkSimpleScalarTree::InitTraversal ( double  scalarValue  )  [virtual]

Begin to traverse the cells based on a scalar value. Returned cells will have scalar values that span the scalar value specified.

Implements vtkScalarTree.

virtual vtkCell* vtkSimpleScalarTree::GetNextCell ( vtkIdType cellId,
vtkIdList *&  ptIds,
vtkDataArray cellScalars 
) [virtual]

Return the next cell that may contain scalar value specified to initialize traversal. The value NULL is returned if the list is exhausted. Make sure that InitTraversal() has been invoked first or you'll get erratic behavior.

Implements vtkScalarTree.


Member Data Documentation

Reimplemented from vtkScalarTree.

Definition at line 102 of file vtkSimpleScalarTree.h.

Definition at line 103 of file vtkSimpleScalarTree.h.

int vtkSimpleScalarTree::Level [protected]

Definition at line 104 of file vtkSimpleScalarTree.h.

Definition at line 105 of file vtkSimpleScalarTree.h.

vtkScalarNode* vtkSimpleScalarTree::Tree [protected]

Definition at line 106 of file vtkSimpleScalarTree.h.

Definition at line 107 of file vtkSimpleScalarTree.h.


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

Generated on Mon Sep 27 18:50:08 2010 for VTK by  doxygen 1.5.6