Simpatico
v1.10
|
Container for a set of atoms.
Definition at line 29 of file tools/storage/AtomStorage.h.
#include <AtomStorage.h>
Public Member Functions | |
AtomStorage () | |
Constructor. More... | |
~AtomStorage () | |
Destructor. More... | |
void | allocate (int capacity) |
Allocate and initialize memory. More... | |
Atom * | newPtr () |
Return pointer to location for new atom. More... | |
void | add () |
Finalize addition of atom (allows lookup by id). More... | |
void | clear () |
Clear all atoms and groups. More... | |
Atom * | ptr (int id) |
Get a pointer to an atom by global id. More... | |
void | begin (Iterator &iter) |
Initialize an iterator for atoms. More... | |
int | capacity () const |
Get atom capacity (maximum id + 1). More... | |
int | size () const |
Get number of atoms. More... | |
Tools::AtomStorage::AtomStorage | ( | ) |
Constructor.
Definition at line 16 of file tools/storage/AtomStorage.cpp.
Tools::AtomStorage::~AtomStorage | ( | ) |
Destructor.
Definition at line 23 of file tools/storage/AtomStorage.cpp.
void Tools::AtomStorage::allocate | ( | int | capacity | ) |
Allocate and initialize memory.
capacity | Maximum number of atoms |
Definition at line 29 of file tools/storage/AtomStorage.cpp.
References clear().
Referenced by Tools::Configuration::readParameters().
Atom * Tools::AtomStorage::newPtr | ( | ) |
Return pointer to location for new atom.
Definition at line 39 of file tools/storage/AtomStorage.cpp.
References size(), and UTIL_THROW.
Referenced by Tools::DdMdConfigReader::readConfig(), and Tools::HoomdConfigReader::readConfig().
void Tools::AtomStorage::add | ( | ) |
Finalize addition of atom (allows lookup by id).
Definition at line 53 of file tools/storage/AtomStorage.cpp.
References Tools::Atom::id, and UTIL_THROW.
Referenced by Tools::DdMdConfigReader::readConfig(), and Tools::HoomdConfigReader::readConfig().
void Tools::AtomStorage::clear | ( | ) |
Clear all atoms and groups.
Definition at line 66 of file tools/storage/AtomStorage.cpp.
References capacity().
Referenced by allocate(), and Tools::Configuration::clear().
|
inline |
Get a pointer to an atom by global id.
Returns a null pointer if no such atom is present.
id | global index / tag of desired atom. |
Definition at line 125 of file tools/storage/AtomStorage.h.
Referenced by Tools::HoomdConfigReader::readConfig(), Tools::LammpsDumpReader::readFrame(), Tools::DdMdTrajectoryReader::readFrame(), and Tools::ConfigReader::setAtomContexts().
|
inline |
Initialize an iterator for atoms.
Definition at line 132 of file tools/storage/AtomStorage.h.
Referenced by Tools::ConfigReader::addAtomsToSpecies(), Tools::PairEnergy::sample(), Tools::DdMdConfigWriter::writeConfig(), Tools::HoomdConfigWriter::writeConfig(), and Tools::LammpsDumpWriter::~LammpsDumpWriter().
|
inline |
Get atom capacity (maximum id + 1).
Definition at line 119 of file tools/storage/AtomStorage.h.
Referenced by clear(), and Tools::DdMdConfigReader::readConfig().
|
inline |
Get number of atoms.
Definition at line 112 of file tools/storage/AtomStorage.h.
Referenced by newPtr(), Tools::HoomdConfigReader::readConfig(), Tools::ConfigReader::setAtomContexts(), Tools::DdMdConfigWriter::writeConfig(), Tools::HoomdConfigWriter::writeConfig(), and Tools::LammpsDumpWriter::~LammpsDumpWriter().