PSCF v1.2
rpg/fts/ramp/RampFactory.tpp
1#ifndef RPG_RAMP_FACTORY_TPP
2#define RPG_RAMP_FACTORY_TPP
3
4#include "RampFactory.h"
5
6// Subclasses of Ramp
7#include "LinearRamp.h"
8
9#include <rpg/fts/simulator/Simulator.h>
10
11namespace Pscf {
12namespace Rpg {
13
14 using namespace Util;
15
16 /*
17 * Constructor
18 */
19 template <int D>
21 : simulatorPtr_(&simulator)
22 {}
23
24 /*
25 * Return a pointer to a instance of Ramp subclass className.
26 */
27 template <int D>
28 Ramp<D>* RampFactory<D>::factory(const std::string & className) const
29 {
30 Ramp<D>* ptr = 0;
31
32 // Try subfactories first
33 ptr = trySubfactories(className);
34 if (ptr) return ptr;
35
36 // Try to match classname
37 if (className == "LinearRamp") {
38 ptr = new LinearRamp<D>(*simulatorPtr_);
39 }
40
41 return ptr;
42 }
43
44}
45}
46#endif
Linear ramp - parameters vary linearly with step index.
Ramp< D > * factory(const std::string &className) const
Method to create any Ramp supplied with PSCF.
RampFactory(Simulator< D > &simulator)
Constructor.
Class that varies parameters during a simulation (abstract).
Field theoretic simulator (base class).
Definition rpg/System.h:41
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.