PSCF v1.2
rpg/fts/montecarlo/McMoveManager.h
1#ifndef RPG_MC_MOVE_MANAGER_H
2#define RPG_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 Rpg {
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 RPG_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 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.
double probability(int i) const
Return probability of move i.
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
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.