PSCF v1.2
rpc/fts/ramp/RampFactory.h
1#ifndef RPC_RAMP_FACTORY_H
2#define RPC_RAMP_FACTORY_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 <rpc/fts/ramp/Ramp.h>
12#include <util/param/Factory.h>
13#include <string>
14
15namespace Pscf {
16namespace Rpc {
17
18 template <int D> class Simulator;
19
20 using namespace Util;
21
27 template <int D>
28 class RampFactory : public Factory< Ramp<D> >
29 {
30
31 public:
32
38 RampFactory(Simulator<D>& simulator);
39
46 Ramp<D>* factory(const std::string & className) const;
47
48 using Factory< Ramp<D> >::trySubfactories;
49
50 private:
51
53 Simulator<D>* simulatorPtr_;
54
55 };
56
57 #ifndef RPC_RAMP_FACTORY_TPP
58 // Suppress implicit instantiation
59 extern template class RampFactory<1>;
60 extern template class RampFactory<2>;
61 extern template class RampFactory<3>;
62 #endif
63
64}
65}
66#endif
Ramp< D > * factory(const std::string &className) const
Method to create any Ramp supplied with PSCF.
RampFactory(Simulator< D > &simulator)
Constructor.
Factory template.
Ramp< D > * trySubfactories(const std::string &className) const
Definition Factory.h:425
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.