PSCF v1.2
rpg/fts/trajectory/TrajectoryReaderFactory.h
1#ifndef RPG_TRAJECTORY_READER_FACTORY_H
2#define RPG_TRAJECTORY_READER_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/trajectory/TrajectoryReader.h>
13#include <string>
14
15
16namespace Pscf {
17namespace Rpg {
18
19 template <int D> class System;
20
21 using namespace Util;
22
28 template <int D>
29 class TrajectoryReaderFactory : public Factory< TrajectoryReader<D> >
30 {
31
32 public:
33
36
43 TrajectoryReader<D>* factory(const std::string &className) const;
44
46
47 private:
48
50 System<D>* sysPtr_;
51
52 };
53
54 #ifndef RPG_TRAJECTORY_READER_FACTORY_TPP
55 // Suppress implicit instantiation
56 extern template class TrajectoryReaderFactory<1>;
57 extern template class TrajectoryReaderFactory<2>;
58 extern template class TrajectoryReaderFactory<3>;
59 #endif
60
61}
62}
63#endif
Main class for calculations that represent one system.
Definition rpg/System.h:107
Factory for subclasses of TrajectoryReader.
TrajectoryReader< D > * factory(const std::string &className) const
Method to create any TrajectoryReader supplied with PSCF.
Factory template.
TrajectoryReader< 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.