Geant4-11
G4KDNode.icc
Go to the documentation of this file.
1//
2// ********************************************************************
3// * License and Disclaimer *
4// * *
5// * The Geant4 software is copyright of the Copyright Holders of *
6// * the Geant4 Collaboration. It is provided under the terms and *
7// * conditions of the Geant4 Software License, included in the file *
8// * LICENSE and available at http://cern.ch/geant4/license . These *
9// * include a list of copyright holders. *
10// * *
11// * Neither the authors of this software system, nor their employing *
12// * institutes,nor the agencies providing financial support for this *
13// * work make any representation or warranty, express or implied, *
14// * regarding this software system or assume any liability for its *
15// * use. Please see the license in the file LICENSE and URL above *
16// * for the full disclaimer and the limitation of liability. *
17// * *
18// * This code implementation is the result of the scientific and *
19// * technical work of the GEANT4 collaboration. *
20// * By using, copying, modifying or distributing the software (or *
21// * any work based on the software) you agree to acknowledge its *
22// * use in resulting scientific publications, and indicate your *
23// * acceptance of all terms of the Geant4 Software license. *
24// ********************************************************************
25//
26//
27// Author: Mathieu Karamitros (kara (AT) cenbg . in2p3 . fr)
28//
29// History:
30// -----------
31// 10 Oct 2011 M.Karamitros created
32//
33// -------------------------------------------------------------------
34
35//______________________________________________________________________
36template<typename PointT>
37 G4KDNode<PointT>::G4KDNode(G4KDTree* tree,
38 PointT* point,
39 G4KDNode_Base* parent) :
40 G4KDNode_Base(tree, parent)
41 {
42 fPoint = point;
43 fValid = true;
44 }
45
46// Copy constructor should not be used
47template<typename PointT>
48 G4KDNode<PointT>::G4KDNode(const G4KDNode<PointT>& right) :
49 G4KDNode_Base(right), fPoint(0)
50 {
51 fValid = false;
52 }
53
54// Assignement should not be used
55template<typename PointT>
56 G4KDNode<PointT>& G4KDNode<PointT>::operator=(const G4KDNode<PointT>& right)
57 {
58 if(this == &right) return *this;
59 fPoint = right.fPoint;
60 fTree = right.fTree;
61 fLeft = right.fLeft;
62 fRight = right.fRight;
63 fParent = right.fParent;
64 fSide = right.fSide;
65 fAxis = right.fAxis;
66 return *this;
67 }
68
69template<typename PointT>
70 G4KDNode<PointT>::~G4KDNode()
71 {
72 }
73
74template<typename Position>
75 G4KDNode_Base* G4KDNode_Base::FindParent(const Position& x0)
76 {
77 G4KDNode_Base* aParent = 0;
78 G4KDNode_Base* next = this;
79 int split = -1;
80 while(next)
81 {
82 split = next->fAxis;
83 aParent = next;
84
85 // works if node called "next" is valid
86 if(x0[split] > (*next)[split]) next = next->fRight;
87 else next = next->fLeft;
88 }
89 return aParent;
90 }
91
92template<typename PointT>
93 G4KDNode_Base* G4KDNode_Base::Insert(PointT* point)
94 {
95 G4KDNode_Base* aParent = FindParent(*point);
96 // TODO check p == aParent->pos
97 // Exception
98
99 G4KDNode_Base* newNode = new G4KDNode<PointT>(fTree, point, aParent);
100
101 if((*point)[aParent->fAxis] > (*aParent)[aParent->fAxis])
102 {
103 aParent->fRight = newNode;
104 newNode->fSide = 1;
105 }
106 else
107 {
108 aParent->fLeft = newNode;
109 newNode->fSide = -1;
110 }
111
112 return newNode;
113 }
114
115template<typename PointT>
116 G4KDNode_Base* G4KDNode_Base::Insert(const PointT& point)
117 {
118 G4KDNode_Base* aParent = FindParent(point);
119 // TODO check p == aParent->pos
120 // Exception
121
122 G4KDNode_Base* newNode = new G4KDNodeCopy<PointT>(fTree, point, aParent);
123
124 if(point[aParent->fAxis] > (*aParent)[aParent->fAxis])
125 {
126 aParent->fRight = newNode;
127 newNode->fSide = 1;
128 }
129 else
130 {
131 aParent->fLeft = newNode;
132 newNode->fSide = -1;
133 }
134
135 return newNode;
136 }
137