PSCF v1.2
rpc/fts/trajectory/TrajectoryReader.h
1#ifndef RPC_TRAJECTORY_READER_H
2#define RPC_TRAJECTORY_READER_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 <string>
12
13namespace Pscf {
14namespace Rpc {
15
16 template <int D> class System;
17
23 template <int D>
25 {
26
27 public:
28
33
37 virtual ~TrajectoryReader(){};
38
51 virtual void open(std::string filename) = 0;
52
61 virtual bool readFrame() = 0;
62
66 virtual void close() = 0;
67
68 virtual void readHeader(){};
69
70 protected:
71
76
77 private:
78
82 System<D>* systemPtr_;
83
84 }; // end class TrajectoryReader
85
86 // Get the parent system.
87 template <int D>
89 { return *systemPtr_; }
90
91 #ifndef RPC_TRAJECTORY_READER_TPP
92 // Suppress implicit instantiation
93 extern template class TrajectoryReader<1>;
94 extern template class TrajectoryReader<2>;
95 extern template class TrajectoryReader<3>;
96 #endif
97
98}
99}
100#endif
Main class for SCFT or PS-FTS simulation of one system.
Definition rpc/System.h:100
Trajectory file reader (base class).
virtual bool readFrame()=0
Read a single frame.
virtual void close()=0
Close the trajectory file.
TrajectoryReader(System< D > &system)
Constructor.
System< D > & system()
Return reference to parent system.
virtual void open(std::string filename)=0
Open trajectory file and read header, if any.
PSCF package top-level namespace.
Definition param_pc.dox:1