2013-03-03 00:42:56 +01:00
|
|
|
/*+
|
2022-11-17 21:50:06 +01:00
|
|
|
This is CosmoTool (./src/mykdtree.hpp) -- Copyright (C) Guilhem Lavaux (2007-2022)
|
2013-03-03 00:42:56 +01:00
|
|
|
|
|
|
|
guilhem.lavaux@gmail.com
|
|
|
|
|
|
|
|
This software is a computer program whose purpose is to provide a toolbox for cosmological
|
|
|
|
data analysis (e.g. filters, generalized Fourier transforms, power spectra, ...)
|
|
|
|
|
|
|
|
This software is governed by the CeCILL license under French law and
|
2022-11-17 21:50:06 +01:00
|
|
|
abiding by the rules of distribution of free software. You can use,
|
2013-03-03 00:42:56 +01:00
|
|
|
modify and/ or redistribute the software under the terms of the CeCILL
|
|
|
|
license as circulated by CEA, CNRS and INRIA at the following URL
|
2022-11-17 21:50:06 +01:00
|
|
|
"http://www.cecill.info".
|
2013-03-03 00:42:56 +01:00
|
|
|
|
|
|
|
As a counterpart to the access to the source code and rights to copy,
|
|
|
|
modify and redistribute granted by the license, users are provided only
|
|
|
|
with a limited warranty and the software's author, the holder of the
|
|
|
|
economic rights, and the successive licensors have only limited
|
2022-11-17 21:50:06 +01:00
|
|
|
liability.
|
2013-03-03 00:42:56 +01:00
|
|
|
|
|
|
|
In this respect, the user's attention is drawn to the risks associated
|
|
|
|
with loading, using, modifying and/or developing or reproducing the
|
|
|
|
software by the user in light of its specific status of free software,
|
|
|
|
that may mean that it is complicated to manipulate, and that also
|
|
|
|
therefore means that it is reserved for developers and experienced
|
|
|
|
professionals having in-depth computer knowledge. Users are therefore
|
|
|
|
encouraged to load and test the software's suitability as regards their
|
2022-11-17 21:50:06 +01:00
|
|
|
requirements in conditions enabling the security of their systems and/or
|
|
|
|
data to be ensured and, more generally, to use and operate it in the
|
|
|
|
same conditions as regards security.
|
2013-03-03 00:42:56 +01:00
|
|
|
|
|
|
|
The fact that you are presently reading this means that you have had
|
|
|
|
knowledge of the CeCILL license and that you accept its terms.
|
|
|
|
+*/
|
2013-03-06 04:39:33 +01:00
|
|
|
|
2009-01-08 16:18:14 +01:00
|
|
|
#ifndef __HV_KDTREE_HPP
|
|
|
|
#define __HV_KDTREE_HPP
|
|
|
|
|
|
|
|
#include <cmath>
|
|
|
|
#include "config.hpp"
|
2009-01-10 00:42:14 +01:00
|
|
|
#include "bqueue.hpp"
|
2009-01-08 16:18:14 +01:00
|
|
|
|
2014-05-30 17:11:49 +02:00
|
|
|
#ifndef __KD_TREE_ACTIVE_CELLS
|
|
|
|
#define __KD_TREE_ACTIVE_CELLS 1
|
|
|
|
#endif
|
|
|
|
|
2009-01-08 16:18:14 +01:00
|
|
|
namespace CosmoTool {
|
|
|
|
|
2015-06-09 20:01:56 +02:00
|
|
|
typedef uint64_t NodeIntType;
|
|
|
|
|
2022-11-17 21:50:06 +01:00
|
|
|
template<int N, typename CType = ComputePrecision>
|
2009-01-11 16:39:57 +01:00
|
|
|
struct KDDef
|
2009-01-08 16:18:14 +01:00
|
|
|
{
|
2009-02-04 02:00:46 +01:00
|
|
|
typedef CType CoordType;
|
2009-01-11 16:39:57 +01:00
|
|
|
typedef float KDCoordinates[N];
|
2009-01-08 16:18:14 +01:00
|
|
|
};
|
2022-11-17 21:50:06 +01:00
|
|
|
|
2009-02-04 02:00:46 +01:00
|
|
|
template<int N, typename ValType, typename CType = ComputePrecision>
|
2009-01-11 16:39:57 +01:00
|
|
|
struct KDCell
|
2009-01-08 16:18:14 +01:00
|
|
|
{
|
2014-05-30 17:11:49 +02:00
|
|
|
#if __KD_TREE_ACTIVE_CELLS == 1
|
2009-01-08 16:18:14 +01:00
|
|
|
bool active;
|
2014-05-30 17:11:49 +02:00
|
|
|
#endif
|
2009-01-08 16:18:14 +01:00
|
|
|
ValType val;
|
2009-02-04 02:00:46 +01:00
|
|
|
typename KDDef<N,CType>::KDCoordinates coord;
|
2009-01-08 16:18:14 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
class NotEnoughCells: public Exception
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
NotEnoughCells() : Exception() {}
|
|
|
|
~NotEnoughCells() throw () {}
|
|
|
|
};
|
|
|
|
|
2011-02-25 00:04:42 +01:00
|
|
|
class InvalidOnDiskKDTree : public Exception
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
InvalidOnDiskKDTree() : Exception() {}
|
|
|
|
~InvalidOnDiskKDTree() throw () {}
|
|
|
|
};
|
|
|
|
|
2009-02-04 02:00:46 +01:00
|
|
|
template<int N, typename ValType, typename CType = ComputePrecision>
|
2009-01-11 16:39:57 +01:00
|
|
|
struct KDTreeNode
|
2009-01-08 16:18:14 +01:00
|
|
|
{
|
2009-02-04 02:00:46 +01:00
|
|
|
KDCell<N,ValType,CType> *value;
|
|
|
|
KDTreeNode<N,ValType,CType> *children[2];
|
|
|
|
typename KDDef<N,CType>::KDCoordinates minBound, maxBound;
|
2009-12-07 15:46:39 +01:00
|
|
|
#ifdef __KD_TREE_NUMNODES
|
2015-06-09 20:01:56 +02:00
|
|
|
NodeIntType numNodes;
|
2009-12-07 15:46:39 +01:00
|
|
|
#endif
|
2009-01-08 16:18:14 +01:00
|
|
|
};
|
|
|
|
|
2009-02-04 02:00:46 +01:00
|
|
|
template<int N, typename ValType, typename CType = ComputePrecision>
|
2009-01-08 16:18:14 +01:00
|
|
|
class RecursionInfoCells
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2009-02-04 02:00:46 +01:00
|
|
|
typename KDDef<N,CType>::KDCoordinates x;
|
|
|
|
typename KDDef<N,CType>::CoordType r, r2;
|
|
|
|
KDCell<N, ValType,CType> **cells;
|
|
|
|
typename KDDef<N,CType>::CoordType *distances;
|
2021-10-15 18:38:55 +02:00
|
|
|
uint64_t currentRank;
|
|
|
|
uint64_t numCells;
|
2009-01-08 16:18:14 +01:00
|
|
|
};
|
2022-11-17 21:50:06 +01:00
|
|
|
|
2009-01-08 16:18:14 +01:00
|
|
|
|
2009-02-04 02:00:46 +01:00
|
|
|
template<int N, typename ValType, typename CType = ComputePrecision>
|
2009-01-10 00:42:14 +01:00
|
|
|
class RecursionMultipleInfo
|
|
|
|
{
|
|
|
|
public:
|
2013-03-05 17:08:19 +01:00
|
|
|
typename KDDef<N,CType>::KDCoordinates x;
|
2009-02-04 02:00:46 +01:00
|
|
|
BoundedQueue< KDCell<N,ValType,CType> *, typename KDDef<N,CType>::CoordType> queue;
|
2009-01-10 00:42:14 +01:00
|
|
|
int traversed;
|
|
|
|
|
2009-02-04 02:00:46 +01:00
|
|
|
RecursionMultipleInfo(const typename KDDef<N,CType>::KDCoordinates& rx,
|
|
|
|
KDCell<N,ValType,CType> **cells,
|
2021-10-15 18:38:55 +02:00
|
|
|
uint64_t numCells)
|
2013-03-05 17:08:19 +01:00
|
|
|
: queue(cells, numCells, INFINITY),traversed(0)
|
|
|
|
{
|
|
|
|
std::copy(rx, rx+N, x);
|
2009-01-10 00:42:14 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2022-11-17 21:50:06 +01:00
|
|
|
template<int N, typename ValType, typename CType = ComputePrecision>
|
2012-05-20 15:21:00 +02:00
|
|
|
struct KD_default_cell_splitter
|
|
|
|
{
|
2015-06-09 20:01:56 +02:00
|
|
|
void operator()(KDCell<N,ValType,CType> **cells, NodeIntType Ncells, NodeIntType& split_index, int axis, typename KDDef<N,CType>::KDCoordinates minBound, typename KDDef<N,CType>::KDCoordinates maxBound);
|
2012-05-20 15:21:00 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
template<int N, typename ValType, typename CType = ComputePrecision, typename CellSplitter = KD_default_cell_splitter<N,ValType,CType> >
|
2009-01-11 16:39:57 +01:00
|
|
|
class KDTree
|
2009-01-08 16:18:14 +01:00
|
|
|
{
|
|
|
|
public:
|
2009-02-04 02:00:46 +01:00
|
|
|
typedef typename KDDef<N,CType>::CoordType CoordType;
|
2009-01-11 16:39:57 +01:00
|
|
|
typedef typename KDDef<N>::KDCoordinates coords;
|
2009-02-04 02:00:46 +01:00
|
|
|
typedef KDCell<N,ValType,CType> Cell;
|
|
|
|
typedef KDTreeNode<N,ValType,CType> Node;
|
2022-11-17 21:50:06 +01:00
|
|
|
|
2012-05-20 15:21:00 +02:00
|
|
|
CellSplitter splitter;
|
2009-01-08 16:18:14 +01:00
|
|
|
|
2015-06-09 20:01:56 +02:00
|
|
|
KDTree(Cell *cells, NodeIntType Ncells);
|
2009-01-11 16:39:57 +01:00
|
|
|
~KDTree();
|
2009-01-08 16:18:14 +01:00
|
|
|
|
2013-03-05 17:08:19 +01:00
|
|
|
void setPeriodic(bool on, CoordType replicate)
|
|
|
|
{
|
|
|
|
periodic = on;
|
2013-03-07 16:45:52 +01:00
|
|
|
std::fill(this->replicate, this->replicate+N, replicate);
|
|
|
|
}
|
|
|
|
|
|
|
|
void setPeriodic(bool on, const coords& replicate)
|
|
|
|
{
|
|
|
|
periodic = on;
|
|
|
|
std::copy(replicate, replicate+N, this->replicate);
|
2013-03-05 17:08:19 +01:00
|
|
|
}
|
|
|
|
|
2022-11-17 21:50:06 +01:00
|
|
|
uint64_t getIntersection(const coords& x, CoordType r,
|
2009-02-04 02:00:46 +01:00
|
|
|
Cell **cells,
|
2021-10-15 18:38:55 +02:00
|
|
|
uint64_t numCells);
|
2022-11-17 21:50:06 +01:00
|
|
|
uint64_t getIntersection(const coords& x, CoordType r,
|
2009-02-04 02:00:46 +01:00
|
|
|
Cell **cells,
|
2009-01-11 16:39:57 +01:00
|
|
|
CoordType *distances,
|
2021-10-15 18:38:55 +02:00
|
|
|
uint64_t numCells);
|
|
|
|
uint64_t countCells(const coords& x, CoordType r);
|
2009-01-08 16:18:14 +01:00
|
|
|
|
2009-02-04 02:00:46 +01:00
|
|
|
Cell *getNearestNeighbour(const coords& x);
|
2009-01-11 16:39:57 +01:00
|
|
|
|
2021-10-15 18:38:55 +02:00
|
|
|
void getNearestNeighbours(const coords& x, uint64_t NumCells,
|
2009-02-04 02:00:46 +01:00
|
|
|
Cell **cells);
|
2021-10-15 18:38:55 +02:00
|
|
|
void getNearestNeighbours(const coords& x, uint64_t NumCells,
|
2009-02-04 02:00:46 +01:00
|
|
|
Cell **cells,
|
2009-01-11 16:39:57 +01:00
|
|
|
CoordType *distances);
|
2009-01-08 16:18:14 +01:00
|
|
|
|
2009-02-04 02:00:46 +01:00
|
|
|
Node *getRoot() { return root; }
|
2009-01-08 16:18:14 +01:00
|
|
|
|
|
|
|
void optimize();
|
|
|
|
|
2009-02-04 02:00:46 +01:00
|
|
|
Node *getAllNodes() { return nodes; }
|
2015-06-09 20:01:56 +02:00
|
|
|
NodeIntType getNumNodes() const { return lastNode; }
|
2009-01-08 16:18:14 +01:00
|
|
|
|
2015-06-09 20:01:56 +02:00
|
|
|
NodeIntType countActives() const;
|
2009-01-08 16:18:14 +01:00
|
|
|
|
2009-12-07 15:46:39 +01:00
|
|
|
#ifdef __KD_TREE_NUMNODES
|
2015-06-09 20:01:56 +02:00
|
|
|
NodeIntType getNumberInNode(const Node *n) const { return n->numNodes; }
|
2009-12-07 15:46:39 +01:00
|
|
|
#else
|
2015-06-09 20:01:56 +02:00
|
|
|
NodeIntType getNumberInNode(const Node *n) const {
|
2022-11-17 21:50:06 +01:00
|
|
|
if (n == 0)
|
2009-12-07 15:46:39 +01:00
|
|
|
return 0;
|
|
|
|
return 1+getNumberInNode(n->children[0])+getNumberInNode(n->children[1]);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2011-02-25 00:04:42 +01:00
|
|
|
#ifdef __KD_TREE_SAVE_ON_DISK
|
2018-03-26 10:19:31 +02:00
|
|
|
KDTree(std::istream& i, Cell *cells, NodeIntType Ncells);
|
2009-12-07 15:46:39 +01:00
|
|
|
|
2011-02-25 00:04:42 +01:00
|
|
|
void saveTree(std::ostream& o) const;
|
|
|
|
#endif
|
2009-01-08 16:18:14 +01:00
|
|
|
protected:
|
2009-02-04 02:00:46 +01:00
|
|
|
Node *nodes;
|
2015-06-09 20:01:56 +02:00
|
|
|
NodeIntType numNodes;
|
|
|
|
NodeIntType lastNode;
|
2009-01-08 16:18:14 +01:00
|
|
|
|
2009-02-04 02:00:46 +01:00
|
|
|
Node *root;
|
|
|
|
Cell **sortingHelper;
|
2011-02-25 00:04:42 +01:00
|
|
|
Cell *base_cell;
|
2009-01-08 16:18:14 +01:00
|
|
|
|
2013-03-05 04:48:13 +01:00
|
|
|
bool periodic;
|
2013-03-07 16:45:52 +01:00
|
|
|
coords replicate;
|
2013-03-05 04:48:13 +01:00
|
|
|
|
2009-02-04 02:00:46 +01:00
|
|
|
Node *buildTree(Cell **cell0,
|
2015-06-09 20:01:56 +02:00
|
|
|
NodeIntType NumCells,
|
2009-02-04 02:00:46 +01:00
|
|
|
uint32_t depth,
|
|
|
|
coords minBound,
|
|
|
|
coords maxBound);
|
2022-11-17 21:50:06 +01:00
|
|
|
|
2011-06-22 20:57:06 +02:00
|
|
|
template<bool justCount>
|
2009-02-04 02:00:46 +01:00
|
|
|
void recursiveIntersectionCells(RecursionInfoCells<N,ValType, CType>& info,
|
|
|
|
Node *node,
|
2018-03-26 10:19:31 +02:00
|
|
|
int level);
|
2009-01-08 16:18:14 +01:00
|
|
|
|
2009-12-07 15:46:39 +01:00
|
|
|
CoordType computeDistance(const Cell *cell, const coords& x) const;
|
2009-02-04 02:00:46 +01:00
|
|
|
void recursiveNearest(Node *node,
|
2009-01-08 16:18:14 +01:00
|
|
|
int level,
|
|
|
|
const coords& x,
|
|
|
|
CoordType& R2,
|
2009-02-04 02:00:46 +01:00
|
|
|
Cell*& cell);
|
|
|
|
void recursiveMultipleNearest(RecursionMultipleInfo<N,ValType,CType>& info, Node *node,
|
2022-11-17 21:50:06 +01:00
|
|
|
int level);
|
2009-12-07 15:46:39 +01:00
|
|
|
|
2009-01-08 16:18:14 +01:00
|
|
|
};
|
|
|
|
|
2009-02-04 02:00:46 +01:00
|
|
|
template<int N, typename T, typename CType>
|
2015-06-09 20:01:56 +02:00
|
|
|
NodeIntType gatherActiveCells(KDCell<N,T,CType> **cells, NodeIntType numCells);
|
2009-01-08 16:18:14 +01:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#include "mykdtree.tcc"
|
|
|
|
|
|
|
|
#endif
|