VTK
vtkSimpleScalarTree.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkSimpleScalarTree.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
34 #ifndef vtkSimpleScalarTree_h
35 #define vtkSimpleScalarTree_h
36 
37 #include "vtkCommonExecutionModelModule.h" // For export macro
38 #include "vtkScalarTree.h"
39 
40 //BTX
41 class vtkScalarNode;
42 //ETX
43 
45 {
46 public:
49  static vtkSimpleScalarTree *New();
50 
52 
54  void PrintSelf(ostream& os, vtkIndent indent);
56 
58 
62  vtkSetClampMacro(BranchingFactor,int,2,VTK_INT_MAX);
63  vtkGetMacro(BranchingFactor,int);
65 
67 
69  vtkGetMacro(Level,int);
71 
73 
74  vtkSetClampMacro(MaxLevel,int,1,VTK_INT_MAX);
75  vtkGetMacro(MaxLevel,int);
77 
81  virtual void BuildTree();
82 
84  virtual void Initialize();
85 
88  virtual void InitTraversal(double scalarValue);
89 
91 
95  virtual vtkCell *GetNextCell(vtkIdType &cellId, vtkIdList* &ptIds,
96  vtkDataArray *cellScalars);
98 
99 protected:
102 
104  int MaxLevel;
105  int Level;
106  int BranchingFactor; //number of children per node
107  vtkScalarNode *Tree; //pointerless scalar range tree
108  int TreeSize; //allocated size of tree
109  vtkIdType LeafOffset; //offset to leaf nodes of tree
110  vtkIdType TreeIndex; //traversal location within tree
111 
112 private:
113  int ChildNumber; //current child in traversal
114  vtkIdType CellId; //current cell id being examined
115  int FindStartLeaf(vtkIdType index, int level);
116  int FindNextLeaf(vtkIdType index,int level);
117 
118 private:
119  vtkSimpleScalarTree(const vtkSimpleScalarTree&); // Not implemented.
120  void operator=(const vtkSimpleScalarTree&); // Not implemented.
121 };
122 
123 #endif
124 
125 
#define VTKCOMMONEXECUTIONMODEL_EXPORT
#define VTK_INT_MAX
Definition: vtkType.h:132
int vtkIdType
Definition: vtkType.h:275
virtual void InitTraversal(double scalarValue)=0
abstract class to specify cell behavior
Definition: vtkCell.h:61
a simple class to control print indentation
Definition: vtkIndent.h:38
list of point or cell ids
Definition: vtkIdList.h:35
abstract superclass for arrays of numeric data
Definition: vtkDataArray.h:54
virtual vtkCell * GetNextCell(vtkIdType &cellId, vtkIdList *&ptIds, vtkDataArray *cellScalars)=0
organize data according to scalar values (used to accelerate contouring operations) ...
Definition: vtkScalarTree.h:46
virtual void Initialize()=0
static vtkObject * New()
void PrintSelf(ostream &os, vtkIndent indent)
virtual void BuildTree()=0
organize data according to scalar values (used to accelerate contouring operations) ...