PSCF v1.2
rpc/fts/trajectory/TrajectoryReaderFactory.h
1#ifndef RPC_TRAJECTORY_READER_FACTORY_H
2#define RPC_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 <rpc/fts/trajectory/TrajectoryReader.h>
13#include <string>
14
15namespace Pscf {
16namespace Rpc {
17
18 template <int D> class System;
19
20 using namespace Util;
21
27 template <int D>
28 class TrajectoryReaderFactory : public Factory< TrajectoryReader<D> >
29 {
30
31 public:
32
35
42 TrajectoryReader<D>* factory(const std::string &className) const;
43
45
46 private:
47
49 System<D>* sysPtr_;
50
51 };
52
53 #ifndef RPC_TRAJECTORY_READER_FACTORY_TPP
54 // Suppress implicit instantiation
55 extern template class TrajectoryReaderFactory<1>;
56 extern template class TrajectoryReaderFactory<2>;
57 extern template class TrajectoryReaderFactory<3>;
58 #endif
59
60}
61}
62#endif
Main class for SCFT or PS-FTS simulation of one system.
Definition rpc/System.h:100
Factory for subclasses of TrajectoryReader.
TrajectoryReader< D > * factory(const std::string &className) const
Method to create any TrajectoryReader supplied with PSCF.
Trajectory file reader (base class).
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.