12#include <util/param/ParamComposite.h>
13#include <util/random/Random.h>
15#include <util/misc/Timer.h>
23 template <
int D>
class System;
24 template <
int D>
class McSimulator;
207 Timer compressorTimer_;
208 Timer componentTimer_;
209 Timer hamiltonianTimer_;
210 Timer decisionTimer_;
245 {
return nAttempt_; }
289 {
return *systemPtr_; }
296 {
return *simulatorPtr_; }
303 {
return *randomPtr_; }
310 {
return probability_; }
317 { probability_ = probability; }
319 #ifndef RPC_MC_MOVE_TPP
McMove is an abstract base class for Monte Carlo moves.
void incrementNAccept()
Increment the number of accepted moves.
long nFail() const
Return number of moves that fail to converge.
double probability() const
Return probability for this McMove.
virtual void clearTimers()
Clear timers.
Timer attemptMoveTimer_
Timers for McMove.
virtual bool needsDc()
Decide whether dc fields need to be saved for move The default implementation is false.
Random & random()
Get Random number generator of parent System.
McMove(McSimulator< D > &simulator)
Constructor.
virtual bool needsCc()
Decide whether cc fields need to be saved for move The default implementation is false.
virtual void readParameters(std::istream &in)
Read required parameters from file.
System< D > & system()
Get parent System object.
McSimulator< D > & simulator()
Get parent McSimulator object.
void setProbability(double probability)
Set the probability for this McMove.
void incrementNAttempt()
Increment the number of attempted moves.
virtual void attemptMove()
Attempt unconstrained move.
virtual ~McMove()
Destructor.
long nAttempt() const
Return number of moves that have been attempted.
virtual bool move()
Generate, attempt, and accept or reject a Monte Carlo move.
virtual void outputTimers(std::ostream &out)
Log output timing results.
void readProbability(std::istream &in)
Read the probability from file.
void incrementNFail()
Increment the number of failed moves.
virtual void setup()
Setup before the beginning of each simulation run.
virtual void output()
Output statistics for this move (at the end of simulation)
long nAccept() const
Return number of moves that have been accepted.
Monte-Carlo simulation coordinator.
Main class for SCFT or PS-FTS simulation of one system.
An object that can read multiple parameters from file.
File containing preprocessor macros for error handling.
PSCF package top-level namespace.
Utility classes for scientific computation.