9 #include <mcMd/simulation/Simulation.h> 10 #include <mcMd/chemistry/Molecule.h> 11 #include <mcMd/chemistry/Atom.h> 12 #include <simp/boundary/Boundary.h> 13 #include <util/math/feq.h> 14 #include <util/misc/FileMaster.h> 15 #include <util/archives/Serializable_includes.h> 48 read<double>(in,
"max", max_);
49 read<int>(in,
"nBin", nBin_);
50 read<PairSelector>(in,
"selector", selector_);
55 isInitialized_ =
true;
64 loadParameter<double>(ar,
"max", max_);
65 loadParameter<int>(ar,
"nBin", nBin_);
66 loadParameter<PairSelector>(ar,
"selector", selector_);
77 if (nAtomType_ != typeNumbers_.capacity()) {
78 UTIL_THROW(
"Inconsistent typeNumbers capacity");
80 if (nBin_ != accumulator_.nBin()) {
83 if (!
feq(max_, accumulator_.max())) {
87 isInitialized_ =
true;
101 if (!isInitialized_) {
104 accumulator_.
clear();
119 int iSpecies1, iSpecies2, nSpecies, i;
121 for (i = 0; i < nAtomType_; ++i) {
129 for (iSpecies1 = 0; iSpecies1 < nSpecies; ++iSpecies1) {
131 for ( ; molIter1.
notEnd(); ++molIter1) {
132 molIter1->begin(atomIter1);
133 for ( ; atomIter1.
notEnd(); ++atomIter1) {
134 r1 = atomIter1->position();
136 ++typeNumbers_[atomIter1->typeId()];
139 for (iSpecies2 = 0; iSpecies2 < nSpecies; ++iSpecies2) {
141 for ( ; molIter2.
notEnd(); ++molIter2) {
146 molIter2->begin(atomIter2);
147 for ( ; atomIter2.
notEnd(); ++atomIter2) {
149 if (selector_.
match(*atomIter1, *atomIter2)) {
150 r2 = atomIter2->position();
172 for (i = 0; i < nAtomType_; ++i) {
173 number += typeNumbers_[i];
175 normSum_ += number*number/boundaryPtr->
volume();
193 double nSnapshot = double(accumulator_.
nSnapshot()) ;
194 accumulator_.
setNorm(normSum_ / nSnapshot);
195 if (selector_.
pairType() == PairSelector::ALL) {
198 accumulator_.
output(outputFile_);
virtual void output()
Output results to output file.
A Vector is a Cartesian vector.
void setParam(double max, int nBin)
Set parameters and initialize.
void output(std::ostream &out)
Output the distribution to file.
void begin(int speciesId, MoleculeIterator &iterator)
Initialize an iterator for molecules of one species in this System.
double distanceSq(const Vector &r1, const Vector &r2) const
Return square distance between positions r1 and r2.
double volume() const
Return unit cell volume.
An orthorhombic periodic unit cell.
void openOutputFile(const std::string &filename, std::ofstream &out, std::ios_base::openmode mode=std::ios_base::out) const
Open an output file.
virtual void loadParameters(Serializable::IArchive &ar)
Load parameters from archive.
A set of interacting Molecules enclosed by a Boundary.
System & system()
Return reference to parent system.
Forward iterator for a PArray.
void setOutputIntegral(bool outputIntegral)
Set true to enable output of spatial integral of g(r).
File containing preprocessor macros for error handling.
Classes used by all simpatico molecular simulations.
virtual void sample(long iStep)
Add particle pairs to RDF histogram.
Forward const iterator for an Array or a C array.
Saving / output archive for binary ostream.
long nSnapshot()
Get number of snapshots.
void setNorm(double norm)
Set the factor used to normalize the RDF before output.
virtual void readParameters(std::istream &in)
Read parameters from archive.
bool match(const Atom &atom1, const Atom &atom2) const
Return true if pair of atoms matches the selector policy.
#define UTIL_THROW(msg)
Macro for throwing an Exception, reporting function, file and line number.
Simulation & simulation() const
Get the parent Simulation by reference.
virtual void writeParam(std::ostream &out)
Write all parameters to an output stream.
void beginSnapshot()
Mark the beginning of a "snapshot" (i.e., a sampled time step).
Utility classes for scientific computation.
void sample(double value)
Sample a value.
virtual void readParameters(std::istream &in)
Read parameters from file.
virtual void setup()
Setup before a simulation (clear accumulator).
Template for Analyzer associated with one System.
bool notEnd() const
Is the current pointer not at the end of the array?
Boundary & boundary() const
Get the Boundary by reference.
Saving archive for binary istream.
Single-processor Monte Carlo (MC) and molecular dynamics (MD).
int nSpecies() const
Get the number of Species in this Simulation.
virtual void save(Serializable::OArchive &ar)
Save state to archive.
void setClassName(const char *className)
Set class name string.
FileMaster & fileMaster()
Get the FileMaster by reference.
bool isAtInterval(long counter) const
Return true iff counter is a multiple of the interval.
virtual void clear()
Clear all accumulators.
const std::string & outputFileName() const
Return outputFileName string.
void allocate(int capacity)
Allocate the underlying C array.
int nAtomType() const
Get the number of atom types.
bool notEnd() const
Is this not the end of the array?
bool feq(double x, double y, double eps=1.0E-10)
Are two floating point numbers equal to within round-off error?
PairType pairType() const
Return value of pair type.
virtual void loadParameters(Serializable::IArchive &ar)
Load state from an archive.
RDF(System &system)
Constructor.