PSCF v1.2
rpg/fts/montecarlo/McMoveManager.tpp
1#ifndef RPG_MC_MOVE_MANAGER_TPP
2#define RPG_MC_MOVE_MANAGER_TPP
3
4/*
5* PSCF - Polymer Self-Consistent Field
6*
7* Copyright 2016 - 2023, The Regents of the University of Minnesota
8* Distributed under the terms of the GNU General Public License.
9*/
10
11#include <util/global.h>
12#include <rpg/fts/montecarlo/McMoveManager.h>
13#include <rpg/fts/montecarlo/McMoveFactory.h>
14#include <rpg/fts/montecarlo/McSimulator.h>
15#include <util/random/Random.h>
16
17namespace Pscf {
18namespace Rpg {
19
20 using namespace Util;
21
22 /*
23 * Constructor.
24 */
25 template <int D>
27 System<D>& system)
28 : Manager< McMove<D> >(),
29 simulatorPtr_(&simulator),
30 systemPtr_(&system),
31 randomPtr_(&simulator.random())
32 { setClassName("McMoveManager"); }
33
34 // Destructor
35 template <int D>
38
39 /*
40 * Return a pointer to a new McMoveFactory object.
41 */
42 template <int D>
44 { return new McMoveFactory<D>(*simulatorPtr_); }
45
46 /*
47 * Read instructions for creating objects from file.
48 */
49 template <int D>
50 void McMoveManager<D>::readParameters(std::istream &in)
51 {
52 // Read parameters for all McMove<D> objects
53 Manager< McMove<D> >::readParameters(in);
54
55 // Allocate and store probabilities
56 probabilities_.allocate(size());
57 double totalProbability = 0.0;
58 int iMove;
59 for (iMove = 0; iMove < size(); ++iMove) {
60 probabilities_[iMove] = (*this)[iMove].probability();
61 totalProbability += probabilities_[iMove];
62 }
63
64 // Allocate and store and normalize probabilities
65 for (iMove = 0; iMove < size(); ++iMove) {
66 probabilities_[iMove] = probabilities_[iMove]/totalProbability;
67 (*this)[iMove].setProbability(probabilities_[iMove]);
68 }
69 }
70
71 /*
72 * Initialize all moves just prior to a run.
73 */
74 template <int D>
76 {
77 for (int iMove = 0; iMove < size(); ++iMove) {
78 (*this)[iMove].setup();
79 }
80 }
81
82 /*
83 * Choose a McMove at random.
84 */
85 template <int D>
87 {
88 int iMove;
89 iMove = randomPtr_->drawFrom(&probabilities_[0], size());
90 return (*this)[iMove];
91 }
92
93 /*
94 * Output statistics for every move.
95 */
96 template <int D>
98 {
99 for (int i=0; i< size(); i++) {
100 (*this)[i].output();
101 }
102 }
103
104 /*
105 * Log output timing results
106 */
107 template <int D>
108 void McMoveManager<D>::outputTimers(std::ostream& out) const
109 {
110 for (int i=0; i< size(); i++) {
111 (*this)[i].outputTimers(out);
112 }
113 }
114
115 /*
116 * Clear timers
117 */
118 template <int D>
120 {
121 for (int i=0; i< size(); i++) {
122 (*this)[i].clearTimers();
123 }
124 }
125
126 /*
127 * Decide whether any move needs to store cc fields.
128 */
129 template <int D>
131 {
132 for (int i=0; i< size(); i++) {
133 if((*this)[i].needsCc()){
134 return true;
135 }
136 }
137 return false;
138 }
139
140 /*
141 * Decide whether any move needs to store dc fields.
142 */
143 template <int D>
145 {
146 for (int i=0; i< size(); i++) {
147 if((*this)[i].needsDc()){
148 return true;
149 }
150 }
151 return false;
152 }
153
154}
155}
156#endif
Factory for subclasses of McMove.
Manager for a set of McMove objects.
void output() const
Output statistics for all moves.
void setup()
Initialize at beginning of system run.
void outputTimers(std::ostream &out) const
Log output timing results.
virtual void readParameters(std::istream &in)
Read instructions for creating McMove objects.
McMove< D > & chooseMove()
Choose an McMove at random, using specified probabilities.
bool needsDc()
Decide whether any move needs to store dc fields.
McMoveManager(McSimulator< D > &simulator, System< D > &system)
Constructor.
bool needsCc()
Decide whether any move needs to store cc fields.
McMove is an abstract base class for Monte Carlo moves.
Monte-Carlo simulation coordinator.
Main class for calculations that represent one system.
Definition rpg/System.h:107
Factory template.
Template container for pointers to objects with a common base class.
Definition Manager.h:39
void setClassName(const char *className)
Set class name string.
File containing preprocessor macros for error handling.
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.