PSCF v1.2
rpg/fts/montecarlo/McMoveFactory.tpp
1#ifndef RPG_MC_MOVE_FACTORY_TPP
2#define RPG_MC_MOVE_FACTORY_TPP
3
4#include "McMoveFactory.h"
5#include <rpg/fts/montecarlo/McSimulator.h>
6
7// Subclasses of McMove
8#include "RealMove.h"
9#include "FourierMove.h"
10#include "ForceBiasMove.h"
11
12namespace Pscf {
13namespace Rpg {
14
15 using namespace Util;
16
17 /*
18 * Constructor
19 */
20 template <int D>
22 : simulatorPtr_(&simulator)
23 {}
24
25 /*
26 * Return a pointer to a instance of McMove subclass className.
27 */
28 template <int D>
29 McMove<D>* McMoveFactory<D>::factory(const std::string &className) const
30 {
31 McMove<D>* ptr = 0;
32
33 // Try subfactories first
34 ptr = trySubfactories(className);
35 if (ptr) return ptr;
36
37
38 // Try to match classname
39 if (className == "RealMove") {
40 ptr = new RealMove<D>(*simulatorPtr_);
41 } else if (className == "FourierMove") {
42 ptr = new FourierMove<D>(*simulatorPtr_);
43 } else if (className == "ForceBiasMove") {
44 ptr = new ForceBiasMove<D>(*simulatorPtr_);
45 }
46
47 return ptr;
48 }
49
50}
51}
52#endif
ForceBiasMove attempts a Brownian dynamics move.
FourierMove is a Monte Carlo move in fourier space.
Definition FourierMove.h:31
McMove< D > * factory(const std::string &className) const
Method to create any McMove supplied with PSCF.
McMoveFactory(McSimulator< D > &simulator)
Constructor.
McMove is an abstract base class for Monte Carlo moves.
Monte-Carlo simulation coordinator.
RealMove is a Monte Carlo move in real space.
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.