1 #ifndef TOOLS_CELL_LIST_H 2 #define TOOLS_CELL_LIST_H 11 #include <tools/neighbor/Cell.h> 12 #include <tools/neighbor/CellAtom.h> 13 #include <tools/chemistry/Atom.h> 14 #include <simp/boundary/Boundary.h> 15 #include <util/space/Grid.h> 16 #include <util/containers/DArray.h> 17 #include <util/containers/GArray.h> 18 #include <util/containers/FArray.h> 124 void allocate(
int atomCapacity,
const Vector& lower,
const Vector& upper,
140 void allocate(
int atomCapacity,
const Vector& lower,
const Vector& upper,
178 void placeAtom(
Atom &atom);
206 const Grid& grid()
const;
213 double cellLength(
int i)
const;
223 int cellIndexFromPosition(
const Vector& position)
const;
228 const Cell* begin()
const;
235 const Cell& cell(
int i)
const;
251 int maxNAtomCell()
const;
257 int atomCapacity()
const;
262 int cellCapacity()
const;
267 bool isAllocated()
const;
274 bool isBuilt()
const;
281 bool isValid()
const;
332 int gridOffsets_ [3];
345 void setGridDimensions(
const Vector& lower,
const Vector& upper,
351 bool isValidAtomId(
int atomId);
362 int calculateAxisOffset(
int cellId,
int i,
int x)
const;
371 inline int CellList::calculateAxisOffset(
int cellId,
int i,
int x)
const 374 x %= grid_.dimension(i);
379 p[j] = cellId/gridOffsets_[j];
380 cellId -= p[j]*gridOffsets_[j];
384 if (p[i] + x >= grid_.dimension(i))
return (x - grid_.dimension(i))*gridOffsets_[i];
385 if (p[i] + x < 0)
return (grid_.dimension(i) + x)*gridOffsets_[i];
386 return x*gridOffsets_[i];
398 if (position[i] <= lower_[i]) {
401 if (position[i] >= upper_[i]) {
404 r[i] = int( (position[i] - lower_[i]) / cellLengths_[i] );
405 assert(r[i] < grid_.dimension(i));
407 return grid_.rank(r);
416 assert(nAtom_ < tags_.capacity());
418 int rank = cellIndexFromPosition(atom.
position);
420 tags_[nAtom_].cellRank = rank;
421 tags_[nAtom_].ptr = &atom;
422 cells_[rank].incrementCapacity();
432 inline bool CellList::isValidAtomId(
int atomId)
433 {
return ( (0 <= atomId) && (atomId < tags_.capacity()) ); }
445 {
return cellLengths_[i]; }
451 {
return cells_[i]; }
463 {
return (cells_.capacity() > 0); }
const int Dimension
Dimensionality of space.
An automatically growable array, analogous to a std::vector.
A Vector is a Cartesian vector.
File containing preprocessor macros for error handling.
Classes used by all simpatico molecular simulations.
Utility classes for scientific computation.
An IntVector is an integer Cartesian vector.
A grid of points indexed by integer coordinates.