Simpatico  v1.10
mcMd/trajectory/TrajectoryReader.cpp
1 /*
2 * Simpatico - Simulation Package for Polymeric and Molecular Liquids
3 *
4 * Copyright 2010 - 2017, The Regents of the University of Minnesota
5 * Distributed under the terms of the GNU General Public License.
6 */
7 
8 #include "TrajectoryReader.h"
9 #include <mcMd/simulation/System.h>
10 #include <mcMd/simulation/Simulation.h>
11 #include <mcMd/chemistry/Molecule.h>
12 #include <simp/species/Species.h>
13 
14 namespace McMd
15 {
16 
17  using namespace Util;
18  using namespace Simp;
19 
20  /*
21  * Constructor.
22  */
24  : nAtomTotal_(0),
25  boundaryPtr_(&system.boundary()),
26  systemPtr_(&system),
27  simulationPtr_(&system.simulation())
28  {}
29 
30  /*
31  * Destructor.
32  */
34  {}
35 
36  /*
37  * Add all molecules and set nAtomTotal_.
38  */
40  {
41  int nSpecies = simulation().nSpecies();
42  int speciesCapacity = 0;
43  int iSpec,iMol;
44  Species* speciesPtr;
45  Molecule* molPtr;
46 
47  // Add molecules to system
48  nAtomTotal_ = 0;
49  for (iSpec = 0; iSpec < nSpecies; ++iSpec) {
50  speciesPtr = &simulation().species(iSpec);
51  speciesCapacity = speciesPtr->capacity();
52 
53  for (iMol = 0; iMol < speciesCapacity; ++iMol) {
54  molPtr = &(simulation().getMolecule(iSpec));
55  system().addMolecule(*molPtr);
56  }
57  nAtomTotal_ += speciesCapacity*speciesPtr->nAtom();
58  }
59 
60  }
61 
62 }
System & system() const
Get a reference to the parent System.
TrajectoryReader(System &system)
Constructor.
int nAtom() const
Get number of atoms per molecule for this Species.
virtual void addMolecules()
Add all molecules to system.
A set of interacting Molecules enclosed by a Boundary.
Definition: System.h:115
Classes used by all simpatico molecular simulations.
Molecule & getMolecule(int speciesId)
Get a new molecule from a reservoir of unused Molecule objects.
Simulation & simulation() const
Get a reference to the parent Simulation.
void addMolecule(Molecule &molecule)
Add a Molecule to this System.
Definition: System.cpp:1111
Utility classes for scientific computation.
Definition: accumulators.mod:1
int nAtomTotal_
Total number of atoms (all species)
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.
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.