Simpatico  v1.10
McMoveManager.h
1 #ifndef MCMD_MC_MOVE_MANAGER_H
2 #define MCMD_MC_MOVE_MANAGER_H
3 
4 /*
5 * Simpatico - Simulation Package for Polymeric and Molecular Liquids
6 *
7 * Copyright 2010 - 2017, The Regents of the University of Minnesota
8 * Distributed under the terms of the GNU General Public License.
9 */
10 
11 #include <util/param/Manager.h> // base class template
12 #include "McMove.h" // base class template parameter
13 #include <util/containers/DArray.h> // member template
14 
15 namespace Util { class Random; }
16 
17 namespace McMd
18 {
19 
20  using namespace Util;
21 
22  class McSimulation;
23  class McSystem;
24 
33  class McMoveManager : public Manager<McMove>
34  {
35 
36  public:
37 
43  McMoveManager(McSimulation& simulation);
44 
48  ~McMoveManager();
49 
55  virtual void readParameters(std::istream &in);
56 
62  virtual void loadParameters(Serializable::IArchive &ar);
63 
69  virtual void save(Serializable::OArchive &ar);
70 
76  void setup();
77 
83  McMove& chooseMove();
84 
91  double probability(int i) const;
92 
96  void output();
97 
98  private:
99 
101  DArray<double> probabilities_;
102 
104  McSimulation* simulationPtr_;
105 
107  McSystem* systemPtr_;
108 
110  Random* randomPtr_;
111 
113  virtual Factory<McMove>* newDefaultFactory() const;
114 
115  };
116 
117  // Inline functions
118 
119  /*
120  * Return probability of move number i
121  */
122  inline double McMoveManager::probability(int i) const
123  {
124  assert(i >= 0);
125  assert(i < size());
126  return probabilities_[i];
127  }
128 
129 }
130 #endif
A System for use in a Markov chain Monte Carlo simulation.
Definition: McSystem.h:52
McMove is an abstract base class for Monte Carlo moves.
Definition: McMove.h:31
Saving / output archive for binary ostream.
A Monte-Carlo simulation of one McSystem.
Definition: McSimulation.h:32
Template container for pointers to objects with a common base class.
Definition: Manager.h:38
Utility classes for scientific computation.
Definition: accumulators.mod:1
Saving archive for binary istream.
Single-processor Monte Carlo (MC) and molecular dynamics (MD).
Manager for a set of McMove objects.
Definition: McMoveManager.h:33
Random number generator.
Definition: Random.h:46