8 #include "DCDTrajectoryReader.h" 9 #include <mcMd/simulation/System.h> 10 #include <mcMd/simulation/Simulation.h> 11 #include <simp/species/Species.h> 12 #include <mcMd/chemistry/Molecule.h> 13 #include <mcMd/chemistry/Atom.h> 14 #include <util/space/Vector.h> 15 #include <util/space/IntVector.h> 22 #define NATOMS_POS 268L 24 #define FRAMEDATA_POS 276L 48 static unsigned int read_int(std::fstream &file)
51 file.read((
char *)&val,
sizeof(
unsigned int));
58 file_.open(filename.c_str(), std::ios::in | std::ios::binary);
61 message=
"Error opening trajectory file. Filename: " + filename;
66 file_.seekp(NFILE_POS);
67 nFrames_ = read_int(file_);
71 file_.seekp(NATOMS_POS);
72 nAtoms_ = read_int(file_);
78 std::ostringstream oss;
79 oss <<
"Number of atoms in DCD file (" << nAtoms_ <<
") does not " 80 <<
"match allocated number of atoms (" <<
nAtomTotal_ <<
")!";
84 file_.seekp(FRAMEDATA_POS);
94 if (frameId_ >= nFrames_) {
99 double angle0, angle1, angle2;
105 headerSize=read_int(file_);
106 if (headerSize != 6*
sizeof(
double)) {
107 std::ostringstream oss;
108 oss <<
"Unknown file format!";
112 file_.read((
char *)&lx,
sizeof(
double));
113 file_.read((
char *)&angle0,
sizeof(
double));
114 file_.read((
char *)&ly,
sizeof(
double));
115 file_.read((
char *)&angle1,
sizeof(
double));
116 file_.read((
char *)&angle2,
sizeof(
double));
117 file_.read((
char *)&lz,
sizeof(
double));
119 headerSize=read_int(file_);
120 if (headerSize != 6*
sizeof(
double)) {
121 std::ostringstream oss;
122 oss <<
"Unkown file format!";
127 std::ostringstream oss;
128 oss <<
"Error reading trajectory file!";
141 blockSize = read_int(file_);
142 file_.read((
char *) xBuffer_.
cArray(),
sizeof(float) * nAtoms_);
145 if (blockSize != (
int)
sizeof(
float)*nAtoms_) {
146 std::ostringstream oss;
147 oss <<
"Invalid frame size (got " << blockSize
148 <<
", expected " << nAtoms_ <<
")";
152 blockSize = read_int(file_);
153 file_.read((
char *) yBuffer_.
cArray(),
sizeof(float) * nAtoms_);
156 if (blockSize != (
int)
sizeof(
float)*nAtoms_) {
157 std::ostringstream oss;
158 oss <<
"Invalid frame size (got " << blockSize
159 <<
", expected " << nAtoms_ <<
")";
163 blockSize = read_int(file_);
164 file_.read((
char *) zBuffer_.
cArray(),
sizeof(float) * nAtoms_);
167 if (blockSize != (
int)
sizeof(
float)* nAtoms_) {
168 std::ostringstream oss;
169 oss <<
"Invalid frame size (got " << blockSize
170 <<
", expected " << nAtoms_ <<
")";
183 for (iMol = 0; iMol < speciesPtr->
capacity(); ++iMol) {
185 for (molPtr->
begin(atomIter); atomIter.
notEnd(); ++atomIter) {
186 atomIter->position()[0] = (double) xBuffer_[bufferIdx];
187 atomIter->position()[1] = (double) yBuffer_[bufferIdx];
188 atomIter->position()[2] = (double) zBuffer_[bufferIdx];
System & system() const
Get a reference to the parent System.
A Vector is a Cartesian vector.
bool notEnd() const
Is the current pointer not at the end of the array?
Data * cArray()
Return pointer to underlying C array.
void setOrthorhombic(const Vector &lengths)
Set unit cell dimensions for orthorhombic boundary.
void close()
Close trajectory file.
bool readFrame()
Read a single frame.
virtual void addMolecules()
Add all molecules to system.
void begin(AtomIterator &iterator)
Set an Molecule::AtomIterator to first Atom in this Molecule.
A set of interacting Molecules enclosed by a Boundary.
Simulation & simulation() const
Get a reference to the parent Simulation.
Molecule & molecule(int speciesId, int moleculeId)
Get a specific Molecule in this System, by integer index.
#define UTIL_THROW(msg)
Macro for throwing an Exception, reporting function, file and line number.
Utility classes for scientific computation.
void shift(Vector &r) const
Shift Cartesian Vector r to its primary image.
DCDTrajectoryReader(System &system)
Constructor.
Trajectory file reader (base class).
Forward iterator for an Array or a C array.
int nAtomTotal_
Total number of atoms (all species)
Boundary & boundary() const
Get the Boundary.
Single-processor Monte Carlo (MC) and molecular dynamics (MD).
int nSpecies() const
Get the number of Species in this Simulation.
int capacity() const
Maximum allowed number of molecules for this Species.
void allocate(int capacity)
Allocate the underlying C array.
virtual ~DCDTrajectoryReader()
Destructor.
void open(std::string filename)
Read trajectory file header and initialize simulation parameters.
A physical molecule (a set of covalently bonded Atoms).
A Species represents a set of chemically similar molecules.
Species & species(int i)
Get a specific Species by reference.