PSCF v1.2
rpc/fts/montecarlo/McMoveManager.h
1#ifndef RPC_MC_MOVE_MANAGER_H
2#define RPC_MC_MOVE_MANAGER_H
3
4/*
5* PSCF - Polymer Self-Consistent Field Theory
6*
7* Copyright 2016 - 2022, The Regents of the University of Minnesota
8* Distributed under the terms of the GNU General Public License.
9*/
10
11#include "McMove.h" // base class template parameter
12#include <util/param/Manager.h> // base class template
13#include <util/containers/DArray.h> // member template
14
15namespace Util { class Random; }
16
17namespace Pscf {
18namespace Rpc {
19
20 using namespace Util;
21
22 template <int D> class System;
23 template <int D> class McSimulator;
24
30 template <int D>
31 class McMoveManager : public Manager< McMove<D> >
32 {
33
34 public:
35
42 McMoveManager(McSimulator<D>& simulator, System<D>& system);
43
48
54 virtual void readParameters(std::istream &in);
55
61 void setup();
62
69
73 void output() const;
74
81 double probability(int i) const;
82
83 using Manager< McMove<D> >::size;
84
88 void outputTimers(std::ostream& out) const;
89
93 void clearTimers();
94
98 bool needsCc();
99
103 bool needsDc();
104
105 protected:
106
108
109 private:
110
111 // Private data members
112
116 DArray<double> probabilities_;
117
121 McSimulator<D>* simulatorPtr_;
122
126 System<D>* systemPtr_;
127
131 Random* randomPtr_;
132
133 // Private member functions
134
138 virtual Factory< McMove<D> >* newDefaultFactory() const;
139
140 };
141
142 // Inline functions
143
144 /*
145 * Return probability of move number i
146 */
147 template <int D>
148 inline double McMoveManager<D>::probability(int i) const
149 {
150 assert(i >= 0);
151 assert(i < size());
152 return probabilities_[i];
153 }
154
155 #ifndef RPC_MC_MOVE_MANAGER_TPP
156 // Suppress implicit instantiation
157 extern template class McMoveManager<1>;
158 extern template class McMoveManager<2>;
159 extern template class McMoveManager<3>;
160 #endif
161
162}
163}
164#endif
Manager for a set of McMove objects.
void setup()
Initialize at beginning of system run.
McMoveManager(McSimulator< D > &simulator, System< D > &system)
Constructor.
bool needsCc()
Decide whether any move needs to store cc fields.
void outputTimers(std::ostream &out) const
Log output timing results.
McMove< D > & chooseMove()
Choose an McMove at random, using specified probabilities.
void output() const
Output statistics for all moves.
virtual void readParameters(std::istream &in)
Read instructions for creating McMove objects.
bool needsDc()
Decide whether any move needs to store dc fields.
double probability(int i) const
Return probability of move i.
McMove is an abstract base class for Monte Carlo moves.
Monte-Carlo simulation coordinator.
Main class for SCFT or PS-FTS simulation of one system.
Definition rpc/System.h:100
Dynamically allocatable contiguous array template.
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.
Random number generator.
Definition Random.h:47
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.