source: molecuilder/src/linkedcell.hpp@ 9bb477

Last change on this file since 9bb477 was 41c00d, checked in by Frederik Heber <heber@…>, 16 years ago

BUGFIX: LinkedCell::GetPointsInsideSphere() did not work if center of sphere was outside of LinkedCell's domain.

  • Property mode set to 100644
File size: 2.4 KB
RevLine 
[834ff3]1/*
2 * linkedcell.hpp
3 *
4 * If the linked cell should be usable, the class has to inherit LCNodeSet and the nodes (containing the Vectors) have to inherit LCNode. This works well
5 * for molecule and atom classes.
6 *
7 * Created on: Aug 3, 2009
8 * Author: heber
9 */
10
[95183e]11#ifndef LINKEDCELL_HPP_
12#define LINKEDCELL_HPP_
13
[834ff3]14using namespace std;
15
[17b3a5c]16/*********************************************** includes ***********************************/
17
[95183e]18// include config.h
19#ifdef HAVE_CONFIG_H
20#include <config.h>
21#endif
22
[834ff3]23#include <list>
24
25#include "defs.hpp"
26#include "vector.hpp"
27
[17b3a5c]28/****************************************** forward declarations *****************************/
29
[834ff3]30class PointCloud;
[17b3a5c]31class TesselPoint;
32
33/********************************************** definitions *********************************/
[95183e]34
[e08f45]35
[17b3a5c]36/********************************************** declarations *******************************/
37
[834ff3]38/** Linked Cell class for containing Vectors in real space efficiently.
39 */
40class LinkedCell {
[6dd8d3]41private:
42
43public:
44 typedef list<TesselPoint *> LinkedNodes;
45
46
[a048fa]47 Vector max; // upper boundary
48 Vector min; // lower boundary
[834ff3]49 LinkedNodes *LC; // linked cell list
[a048fa]50 double RADIUS; // cell edge length
51 int N[NDIM]; // number of cells per axis
[a9b2a0a]52 mutable int n[NDIM]; // temporary variable for current cell per axis
53 mutable int index; // temporary index variable , access by index = n[0] * N[1] * N[2] + n[1] * N[2] + n[2];
[e08f45]54
[a048fa]55 LinkedCell();
[a9b2a0a]56 LinkedCell(const PointCloud * const set, const double RADIUS);
57 LinkedCell(LinkedNodes *set, const double radius);
[a048fa]58 ~LinkedCell();
[6dd8d3]59 const LinkedCell::LinkedNodes* GetCurrentCell()const ;
60 const LinkedCell::LinkedNodes* GetRelativeToCurrentCell(const int relative[NDIM])const ;
[a9b2a0a]61 bool SetIndexToNode(const TesselPoint * const Walker)const ;
62 bool SetIndexToVector(const Vector * const x)const ;
[41c00d]63 double SetClosestIndexToOutsideVector(const Vector * const x) const;
[a9b2a0a]64 bool CheckBounds()const ;
65 bool CheckBounds(const int relative[NDIM])const ;
[ef016c]66 void GetNeighbourBounds(int lower[NDIM], int upper[NDIM], int step = 1)const ;
[e08f45]67
[ef016c]68 LinkedCell::LinkedNodes* GetallNeighbours(const double distance = 0) const;
[6dd8d3]69 LinkedCell::LinkedNodes* GetPointsInsideSphere(const double radius, const Vector * const center) const;
[a048fa]70 // not implemented yet
[834ff3]71 bool AddNode(Vector *Walker);
72 bool DeleteNode(Vector *Walker);
73 bool MoveNode(Vector *Walker);
[95183e]74};
75
76#endif /*LINKEDCELL_HPP_*/
Note: See TracBrowser for help on using the repository browser.