PSCF v1.2
rpg/scft/sweep/SweepFactory.h
1#ifndef RPG_SWEEP_FACTORY_H
2#define RPG_SWEEP_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 "Sweep.h"
13
14#include <string>
15
16namespace Pscf {
17namespace Rpg {
18
19 using namespace Util;
20 using namespace Pscf::Prdc;
21 using namespace Pscf::Prdc::Cuda;
22
28 template <int D>
29 class SweepFactory : public Factory< Sweep<D> >
30 {
31
32 public:
33
39 SweepFactory(System<D>& system);
40
47 Sweep<D>* factory(std::string const & className) const;
48
49 using Factory< Sweep<D> >::trySubfactories;
50
51 private:
52
53 System<D>* systemPtr_;
54
55 };
56
57 #ifndef RPG_SWEEP_FACTORY_TPP
58 // Suppress implicit instantiation
59 extern template class SweepFactory<1>;
60 extern template class SweepFactory<2>;
61 extern template class SweepFactory<3>;
62 #endif
63
64}
65}
66#endif
Sweep< D > * factory(std::string const &className) const
Method to create any Sweep subclass.
SweepFactory(System< D > &system)
Constructor.
Factory template.
Sweep< D > * trySubfactories(const std::string &className) const
Definition Factory.h:425
Fields, FFTs, and utilities for periodic boundary conditions (CUDA)
Definition CField.cu:12
Periodic fields and crystallography.
Definition CField.cpp:11
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.