Geant4 Cross Reference

Cross-Referencing   Geant4
Geant4/processes/electromagnetic/dna/management/src/G4KDTree.cc

Version: [ ReleaseNotes ] [ 1.0 ] [ 1.1 ] [ 2.0 ] [ 3.0 ] [ 3.1 ] [ 3.2 ] [ 4.0 ] [ 4.0.p1 ] [ 4.0.p2 ] [ 4.1 ] [ 4.1.p1 ] [ 5.0 ] [ 5.0.p1 ] [ 5.1 ] [ 5.1.p1 ] [ 5.2 ] [ 5.2.p1 ] [ 5.2.p2 ] [ 6.0 ] [ 6.0.p1 ] [ 6.1 ] [ 6.2 ] [ 6.2.p1 ] [ 6.2.p2 ] [ 7.0 ] [ 7.0.p1 ] [ 7.1 ] [ 7.1.p1 ] [ 8.0 ] [ 8.0.p1 ] [ 8.1 ] [ 8.1.p1 ] [ 8.1.p2 ] [ 8.2 ] [ 8.2.p1 ] [ 8.3 ] [ 8.3.p1 ] [ 8.3.p2 ] [ 9.0 ] [ 9.0.p1 ] [ 9.0.p2 ] [ 9.1 ] [ 9.1.p1 ] [ 9.1.p2 ] [ 9.1.p3 ] [ 9.2 ] [ 9.2.p1 ] [ 9.2.p2 ] [ 9.2.p3 ] [ 9.2.p4 ] [ 9.3 ] [ 9.3.p1 ] [ 9.3.p2 ] [ 9.4 ] [ 9.4.p1 ] [ 9.4.p2 ] [ 9.4.p3 ] [ 9.4.p4 ] [ 9.5 ] [ 9.5.p1 ] [ 9.5.p2 ] [ 9.6 ] [ 9.6.p1 ] [ 9.6.p2 ] [ 9.6.p3 ] [ 9.6.p4 ] [ 10.0 ] [ 10.0.p1 ] [ 10.0.p2 ] [ 10.0.p3 ] [ 10.0.p4 ] [ 10.1 ] [ 10.1.p1 ] [ 10.1.p2 ] [ 10.1.p3 ] [ 10.2 ] [ 10.2.p1 ] [ 10.2.p2 ] [ 10.2.p3 ] [ 10.3 ] [ 10.3.p1 ] [ 10.3.p2 ] [ 10.3.p3 ] [ 10.4 ] [ 10.4.p1 ] [ 10.4.p2 ] [ 10.4.p3 ] [ 10.5 ] [ 10.5.p1 ] [ 10.6 ] [ 10.6.p1 ] [ 10.6.p2 ] [ 10.6.p3 ] [ 10.7 ] [ 10.7.p1 ] [ 10.7.p2 ] [ 10.7.p3 ] [ 10.7.p4 ] [ 11.0 ] [ 11.0.p1 ] [ 11.0.p2 ] [ 11.0.p3, ] [ 11.0.p4 ] [ 11.1 ] [ 11.1.1 ] [ 11.1.2 ] [ 11.1.3 ] [ 11.2 ] [ 11.2.1 ] [ 11.2.2 ] [ 11.3.0 ]

  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  * G4KDTree.cc
 28  *
 29  *  Created on: 22 oct. 2013
 30  *      Author: kara
 31  */
 32 
 33 #include "globals.hh"
 34 #include <cstdio>
 35 #include <cmath>
 36 #include "G4KDTree.hh"
 37 #include "G4KDMap.hh"
 38 #include "G4KDNode.hh"
 39 #include "G4KDTreeResult.hh"
 40 #include <list>
 41 #include <iostream>
 42 
 43 using namespace std;
 44 
 45 G4Allocator<G4KDTree>*& G4KDTree::fgAllocator()
 46 {
 47   G4ThreadLocalStatic G4Allocator<G4KDTree>* _instance = nullptr;
 48   return _instance;
 49 }
 50 
 51 //______________________________________________________________________
 52 // KDTree methods
 53 G4KDTree::G4KDTree(size_t k)
 54   : fDim(k)
 55   ,fKDMap(new G4KDMap(k))
 56 {}
 57 
 58 G4KDTree::~G4KDTree()
 59 {
 60   if(fRoot != nullptr){
 61     __Clear_Rec(fRoot);
 62     fRoot = nullptr;
 63   }
 64 
 65   if(fRect != nullptr){
 66     delete fRect;
 67     fRect = nullptr;
 68   }
 69 
 70   if(fKDMap != nullptr){
 71     delete fKDMap;
 72     fKDMap = nullptr;
 73   }
 74 }
 75 
 76 void* G4KDTree::operator new(size_t)
 77 {
 78   if(fgAllocator() == nullptr){
 79     fgAllocator() = new G4Allocator<G4KDTree>;
 80   }
 81   return (void*) fgAllocator()->MallocSingle();
 82 }
 83 
 84 void G4KDTree::operator delete(void* aNode)
 85 {
 86   fgAllocator()->FreeSingle((G4KDTree*) aNode);
 87 }
 88 
 89 void G4KDTree::Print(std::ostream& out) const
 90 {
 91   if(fRoot != nullptr){
 92     fRoot->Print(out);
 93   }
 94 }
 95 
 96 void G4KDTree::Clear()
 97 {
 98   __Clear_Rec(fRoot);
 99   fRoot    = nullptr;
100   fNbNodes = 0;
101 
102   if(fRect != nullptr)
103   {
104     delete fRect;
105     fRect = nullptr;
106   }
107 }
108 
109 void G4KDTree::__Clear_Rec(G4KDNode_Base* node)
110 {
111   if(node == nullptr)
112   {
113     return;
114   }
115 
116   if(node->GetLeft() != nullptr)
117   {
118     __Clear_Rec(node->GetLeft());
119   }
120   if(node->GetRight() != nullptr)
121   {
122     __Clear_Rec(node->GetRight());
123   }
124 
125   delete node;
126 }
127 
128 void G4KDTree::__InsertMap(G4KDNode_Base* node) { fKDMap->Insert(node); }
129 
130 void G4KDTree::Build()
131 {
132   size_t Nnodes = fKDMap->GetSize();
133 
134   G4cout << "********************" << G4endl;
135   G4cout << "template<typename PointT> G4KDTree<PointT>::Build" << G4endl;
136   G4cout << "Map size = " << Nnodes << G4endl;
137 
138   G4KDNode_Base* root = fKDMap->PopOutMiddle(0);
139 
140   if(root == nullptr)
141   {
142     return;
143   }
144 
145   fRoot = root;
146   fNbActiveNodes++;
147   fRect = new HyperRect(fDim);
148   fRect->SetMinMax(*fRoot, *fRoot);
149 
150   Nnodes--;
151 
152   G4KDNode_Base* parent = fRoot;
153 
154   for(size_t n = 0; n < Nnodes; n += fDim)
155   {
156     for(size_t dim = 0; dim < fDim; dim++)
157     {
158       G4KDNode_Base* node = fKDMap->PopOutMiddle(dim);
159       if(node != nullptr)
160       {
161         parent->Insert(node);
162         fNbActiveNodes++;
163         fRect->Extend(*node);
164         parent = node;
165       }
166     }
167   }
168 }
169 
170 G4KDTreeResultHandle G4KDTree::Nearest(G4KDNode_Base* node)
171 {
172   if(fRect == nullptr)
173   {
174     return nullptr;
175   }
176 
177   std::vector<G4KDNode_Base*> result;
178   G4double dist_sq = DBL_MAX;
179 
180   /* Duplicate the bounding hyperrectangle, we will work on the copy */
181   auto newrect = new HyperRect(*fRect);
182 
183   /* Search for the nearest neighbour recursively */
184   G4int nbresult = 0;
185 
186   __NearestToNode(node, fRoot, *node, result, &dist_sq, newrect, nbresult);
187 
188   /* Free the copy of the hyperrect */
189   delete newrect;
190 
191   /* Store the result */
192   if(!result.empty())
193   {
194     G4KDTreeResultHandle rset(new G4KDTreeResult(this));
195     G4int j = 0;
196     while(j < nbresult)
197     {
198       rset->Insert(dist_sq, result[j]);
199       j++;
200     }
201     rset->Rewind();
202 
203     return rset;
204   }
205   
206   return nullptr;
207 }
208 
209 G4KDTreeResultHandle G4KDTree::NearestInRange(G4KDNode_Base* node,
210                                               const G4double& range)
211 {
212   if(node == nullptr)
213   {
214     return nullptr;
215   }
216   G4int ret(-1);
217 
218   auto* rset = new G4KDTreeResult(this);
219 
220   const G4double range_sq = sqr(range);
221 
222   if((ret = __NearestInRange(fRoot, *node, range_sq, range, *rset, 0, node)) ==
223      -1)
224   {
225     delete rset;
226     return nullptr;
227   }
228   rset->Sort();
229   rset->Rewind();
230   return rset;
231 }
232