PSCF v1.2
rpg/fts/brownian/BdStepFactory.h
1#ifndef RPG_BD_STEP_FACTORY_H
2#define RPG_BD_STEP_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 <util/param/Factory.h>
12#include <rpg/fts/brownian/BdStep.h>
13
14#include <string>
15
16namespace Pscf {
17namespace Rpg {
18
19 template <int D> class BdSimulator;
20
21 using namespace Util;
22
28 template <int D>
29 class BdStepFactory : public Factory< BdStep<D> >
30 {
31
32 public:
33
39 BdStepFactory(BdSimulator<D>& simulator);
40
47 BdStep<D>* factory(const std::string &className) const;
48
50
51 private:
52
54 BdSimulator<D>* simulatorPtr_;
55
56 };
57
58 #ifndef RPG_BD_STEP_FACTORY_TPP
59 // Suppress implicit instantiation
60 extern template class BdStepFactory<1>;
61 extern template class BdStepFactory<2>;
62 extern template class BdStepFactory<3>;
63 #endif
64
65}
66}
67#endif
Brownian dynamics simulator.
Factory for subclasses of BdStep.
BdStepFactory(BdSimulator< D > &simulator)
Constructor.
BdStep< D > * factory(const std::string &className) const
Method to create any BdStep supplied with PSCF.
BdStep is an abstract base class for Brownian dynamics steps.
Factory template.
BdStep< 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.