Garfield++ 5.0
A toolkit for the detailed simulation of particle detectors based on ionisation measurement in gases and semiconductors
Loading...
Searching...
No Matches
Garfield::TetrahedralTree Class Reference

Helper class for searches in field maps. More...

#include <TetrahedralTree.hh>

Public Member Functions

 TetrahedralTree (const Vec3 &origin, const Vec3 &halfDimension)
 Constructor.
 
 ~TetrahedralTree ()
 Destructor.
 
void InsertMeshNode (Vec3 point, const int index)
 Insert a mesh node (a vertex/point) to the tree.
 
void InsertMeshElement (const double bb[6], const int index)
 Insert a mesh element with given bounding box and index to the tree.
 
const std::vector< int > & GetElementsInBlock (const Vec3 &point) const
 Get all elements linked to a block corresponding to the given point.
 

Detailed Description

Helper class for searches in field maps.

This class stores the mesh nodes and elements in an Octree data structure to optimize the element search operations

Author: Ali Sheharyar

Organization: Texas A&M University at Qatar

Definition at line 56 of file TetrahedralTree.hh.

Constructor & Destructor Documentation

◆ TetrahedralTree()

Garfield::TetrahedralTree::TetrahedralTree ( const Vec3 & origin,
const Vec3 & halfDimension )

Constructor.

TetrahedralTree.cc This class stores the mesh nodes and elements in an Octree data structure to optimize the element search operations

Author: Ali Sheharyar Organization: Texas A&M University at Qatar

Definition at line 16 of file TetrahedralTree.cc.

17 : m_origin(origin), m_halfDimension(halfDimension) {
18 m_min.x = origin.x - halfDimension.x;
19 m_min.y = origin.y - halfDimension.y;
20 m_min.z = origin.z - halfDimension.z;
21 m_max.x = origin.x + halfDimension.x;
22 m_max.y = origin.y + halfDimension.y;
23 m_max.z = origin.z + halfDimension.z;
24
25 // Initially, there are no children
26 for (int i = 0; i < 8; ++i) children[i] = nullptr;
27}

Referenced by GetElementsInBlock(), and InsertMeshNode().

◆ ~TetrahedralTree()

Garfield::TetrahedralTree::~TetrahedralTree ( )

Destructor.

Definition at line 29 of file TetrahedralTree.cc.

29 {
30 // Recursively destroy octants
31 for (int i = 0; i < 8; ++i) delete children[i];
32}

Member Function Documentation

◆ GetElementsInBlock()

const std::vector< int > & Garfield::TetrahedralTree::GetElementsInBlock ( const Vec3 & point) const

Get all elements linked to a block corresponding to the given point.

Definition at line 110 of file TetrahedralTree.cc.

110 {
111 const TetrahedralTree* octreeNode = GetBlockFromPoint(point);
112
113 if (octreeNode) {
114 return octreeNode->elements;
115 }
116
117 return emptyBlock;
118}
TetrahedralTree(const Vec3 &origin, const Vec3 &halfDimension)
Constructor.

◆ InsertMeshElement()

void Garfield::TetrahedralTree::InsertMeshElement ( const double bb[6],
const int index )

Insert a mesh element with given bounding box and index to the tree.

Definition at line 94 of file TetrahedralTree.cc.

94 {
95 if (IsLeafNode()) {
96 // Add the element to the list of this octant.
97 elements.push_back(index);
98 return;
99 }
100 // Check which children overlap with the element's bounding box.
101 for (int i = 0; i < 8; i++) {
102 if (!children[i]->DoesBoxOverlap(bb)) continue;
103 children[i]->InsertMeshElement(bb, index);
104 }
105}

◆ InsertMeshNode()

void Garfield::TetrahedralTree::InsertMeshNode ( Vec3 point,
const int index )

Insert a mesh node (a vertex/point) to the tree.

Definition at line 56 of file TetrahedralTree.cc.

56 {
57 // Check if it is a leaf node.
58 if (!IsLeafNode()) {
59 // We are at an interior node. Insert recursively into the
60 // appropriate child octant.
61 int octant = GetOctantContainingPoint(point);
62 children[octant]->InsertMeshNode(point, index);
63 return;
64 }
65
66 // Add the new point if the block is not full.
67 if (nodes.size() < BlockCapacity) {
68 nodes.push_back(std::make_pair(point, index));
69 return;
70 }
71 // Block is full, so we need to partition it.
72 // Split the current node and create new empty trees for each child octant.
73 for (int i = 0; i < 8; ++i) {
74 // Compute new bounding box for this child
75 Vec3 newOrigin = m_origin;
76 newOrigin.x += m_halfDimension.x * (i & 4 ? .5f : -.5f);
77 newOrigin.y += m_halfDimension.y * (i & 2 ? .5f : -.5f);
78 newOrigin.z += m_halfDimension.z * (i & 1 ? .5f : -.5f);
79 children[i] = new TetrahedralTree(newOrigin, m_halfDimension * .5f);
80 }
81
82 // Move the mesh nodes from the partitioned node (now marked as interior) to
83 // its children.
84 while (!nodes.empty()) {
85 auto node = nodes.back();
86 nodes.pop_back();
87 const int oct = GetOctantContainingPoint(node.first);
88 children[oct]->InsertMeshNode(node.first, node.second);
89 }
90 // Insert the new point in the appropriate octant.
91 children[GetOctantContainingPoint(point)]->InsertMeshNode(point, index);
92}

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