PSCF v1.2
rpg/fts/trajectory/TrajectoryReader.h
1#ifndef RPG_TRAJECTORY_READER_H
2#define RPG_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 <util/param/ParamComposite.h>
12#include <util/global.h>
13#include <iostream>
14#include <rpg/System.h>
15
16
17namespace Pscf {
18namespace Rpg
19{
20
21 template <int D> class System;
22 using namespace Util;
23
29 template <int D>
31 {
32
33 public:
34
39
43 virtual ~TrajectoryReader(){};
44
57 virtual void open(std::string filename) = 0;
58
67 virtual bool readFrame() = 0;
68
72 virtual void close() = 0;
73
74 virtual void readHeader(){};
75
76 protected:
77
82
83 private:
84
88 System<D>* systemPtr_;
89
90
91 }; // end class TrajectoryReader
92
93 // Get the parent system.
94 template <int D>
96 { return *systemPtr_; }
97
98 #ifndef RPG_TRAJECTORY_READER_TPP
99 // Suppress implicit instantiation
100 extern template class TrajectoryReader<1>;
101 extern template class TrajectoryReader<2>;
102 extern template class TrajectoryReader<3>;
103 #endif
104
105}
106}
107#endif
Main class for calculations that represent one system.
Definition rpg/System.h:107
virtual bool readFrame()=0
Read a single frame.
virtual void close()=0
Close the trajectory file.
virtual void open(std::string filename)=0
Open trajectory file and read header, if any.
TrajectoryReader(System< D > &system)
Constructor.
System< D > & system()
Return reference to parent system.
File containing preprocessor macros for error handling.
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.