1 #ifndef DDMD_MODIFIER_H 2 #define DDMD_MODIFIER_H 4 #include <util/param/ParamComposite.h> 5 #include <util/misc/Bit.h> 298 bool isSet(
Bit flag)
const;
303 unsigned int flags()
const;
312 int interval()
const;
319 bool isAtInterval(
long iStep)
const;
345 void readInterval(std::istream &in);
380 {
return interval_; }
386 {
return (iStep%interval_ == 0); }
392 {
return *simulationPtr_; }
virtual void preIntegrate1(long iStep)
Call just before the first step of velocity-Verlet algorithm.
bool isAtInterval(long iStep) const
Return true iff iStep is a multiple of the interval.
static const Bit Update
Flag to activate pack/unpack update functions.
static const Bit PostForce
Flag to activate postForce() function.
virtual void setup()
Setup before entering the main loop.
virtual void unpackExchange()
Unpack data from buffer used to exchange atoms.
static const Bit PreTransform
Flag to activate preTransform() function.
Simulation & simulation()
Get the parent Simulation by reference.
static const Bit PreExchange
Flag to activate preExchange() function.
virtual void postUpdate(long iStep)
Call on update steps after updating ghost positions.
static const Bit Setup
Flag to activate setup() function.
static const Bit ReverseUpdate
Flag to activate pack/unpack reverse update functions.
virtual void packExchange()
Pack data into buffer used to exchange atoms.
static const Bit PreIntegrate1
Flag to activate preIntegrate() function.
Parallel domain decomposition (DD) MD simulation.
Bit flag constants associated with particular actions.
Main object for a domain-decomposition MD simulation.
static const Bit PostIntegrate1
Flag to activate postIntegrate1() function.
Saving / output archive for binary ostream.
static const Bit PreUpdate
Flag to activate preUpdate() function.
virtual void preTransform(long iStep)
Call on exchange steps before transforming to scaled atomic coordinates.
static const Bit PostExchange
Flag to activate postExchange() function.
static const Bit PreForce
Flag to activate preForce() function.
virtual void unpackUpdate()
Unpack data from buffer used to update ghost positions.
Utility classes for scientific computation.
virtual void preExchange(long iStep)
Call on exchange steps after transforming but before exchanging atoms.
static const Bit PostNeighbor
Flag to activate postNeighbor() function.
static const Bit Exchange
Flag to activate pack/unpack exchange functions.
virtual void postForce(long iStep)
Call after calculating forces.
int interval() const
Get interval value.
static const Bit EndOfStep
Flag to activate endOfStep() function.
virtual void unpackReverseUpdate()
Unpack data from the buffer used to reverse update forces.
virtual void postIntegrate1(long iStep)
Call just after the first step of velocity-Verlet algorithm.
virtual void postNeighbor(long iStep)
Call on exchange steps after re-building neighbor list (reneighboring).
virtual void postExchange(long iStep)
Call on exchange steps after atom exchange, before reneighboring.
Saving archive for binary istream.
virtual void packReverseUpdate()
Pack data into buffer used to reverse update forces.
void initStatic()
Guarantee initialization of all static class members in DdMd namespace.
Represents a specific bit location within an unsigned int.
static const Bit PostUpdate
Flag to activate postUpdate() function.
virtual void packUpdate()
Pack data into buffer used to update ghost positions.
virtual void preUpdate(long iStep)
Call on update steps before updating ghost positions.
virtual void preForce(long iStep)
Call after updating but before calculating forces.
virtual void endOfStep(long iStep)
Call at the end of the time step.
An object that can read multiple parameters from file.
A Modifier can modify the time evolution of the simulation.