PSCF v1.2
rpg/fts/analyzer/AnalyzerFactory.h
1#ifndef RPG_ANALYZER_FACTORY_H
2#define RPG_ANALYZER_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/analyzer/Analyzer.h>
13#include <string>
14
15namespace Pscf {
16namespace Rpg {
17
18 template <int D> class System;
19 template <int D> class Simulator;
20
21 using namespace Util;
22
28 template <int D>
29 class AnalyzerFactory : public Factory< Analyzer<D> >
30 {
31
32 public:
33
40 AnalyzerFactory(Simulator<D>& simulator, System<D>& system);
41
48 Analyzer<D>* factory(const std::string &className) const;
49
51
52 private:
53
55 System<D>* sysPtr_;
56
58 Simulator<D>* simulatorPtr_;
59
60 };
61
62 #ifndef RPG_MC_MOVE_FACTORY_TPP
63 // Suppress implicit instantiation
64 extern template class AnalyzerFactory<1>;
65 extern template class AnalyzerFactory<2>;
66 extern template class AnalyzerFactory<3>;
67 #endif
68
69}
70}
71#endif
Factory for subclasses of Analyzer.
Analyzer< D > * factory(const std::string &className) const
Method to create any Analyzer supplied with PSCF.
AnalyzerFactory(Simulator< D > &simulator, System< D > &system)
Constructor.
Abstract base for periodic output and/or analysis actions.
Field theoretic simulator (base class).
Definition rpg/System.h:41
Main class for calculations that represent one system.
Definition rpg/System.h:107
Factory template.
Analyzer< 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.