PSCF v1.2
rpc/fts/analyzer/TrajectoryWriter.h
1#ifndef RPC_TRAJECTORY_WRITER_H
2#define RPC_TRAJECTORY_WRITER_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 "Analyzer.h"
12#include <util/global.h>
13
14namespace Pscf {
15namespace Rpc {
16
17 template <int D> class System;
18 template <int D> class Simulator;
19
20 using namespace Util;
21
29 template <int D>
30 class TrajectoryWriter : public Analyzer<D>
31 {
32
33 public:
34
39
44 {}
45
51 virtual void readParameters(std::istream& in);
52
53 #if 0
59 virtual void loadParameters(Serializable::IArchive& ar);
60
66 virtual void save(Serializable::OArchive& ar);
67
74 template <class Archive>
75 void serialize(Archive& ar, const unsigned int version);
76 #endif
77
81 virtual void setup();
82
88 virtual void sample(long iStep);
89
93 virtual void output();
94
99
100 protected:
101
102 // Output file stream
103 std::ofstream outputFile_;
104
105 // Output filename
106 std::string filename_;
107
110
113
118
123
124 protected:
125
133 void writeHeader(std::ofstream& out);
134
141 void writeFrame(std::ofstream& out, long iStep);
142
146 System<D>& system();
147
152
153
154 };
155
156 #if 0
157 /*
158 * Serialize to/from an archive.
159 */
160 template <class Archive>
161 void TrajectoryWriter<D>::serialize(Archive& ar, const unsigned int version)
162 {
163 Analyzer::serialize(ar, version);
164 ar & nSample_;
165 }
166 #endif
167
168 // Get the parent system.
169 template <int D>
171 { return *systemPtr_; }
172
173 //Get parent Simulator object.
174 template <int D>
176 { return *simulatorPtr_; }
177
178 #ifndef RPC_TRAJECTORY_WRITER_TPP
179 // Suppress implicit instantiation
180 extern template class TrajectoryWriter<1>;
181 extern template class TrajectoryWriter<2>;
182 extern template class TrajectoryWriter<3>;
183 #endif
184
185}
186}
187#endif
Abstract base for periodic output and/or analysis actions.
bool isAtInterval(long counter) const
Return true iff counter is a multiple of the interval.
const std::string & outputFileName() const
Return outputFileName string.
Field theoretic simulator (base class).
Definition rpc/System.h:38
Main class for SCFT or PS-FTS simulation of one system.
Definition rpc/System.h:100
Periodically write snapshots to a trajectory file.
System< D > * systemPtr_
Pointer to the parent system.
virtual void readParameters(std::istream &in)
Read interval and output file name.
Simulator< D > & simulator()
Return reference to parent Simulator.
void writeHeader(std::ofstream &out)
Write data that should appear once, at beginning of the file.
virtual void output()
Close trajectory file after run.
long nSample_
Number of configurations dumped thus far (first dump is zero).
long isInitialized_
Has readParam been called?
void writeFrame(std::ofstream &out, long iStep)
Write data that should appear in every frame.
TrajectoryWriter(Simulator< D > &simulator, System< D > &system)
Constructor.
virtual void setup()
Clear nSample counter.
System< D > & system()
Return reference to parent system.
Simulator< D > * simulatorPtr_
Pointer to parent Simulator.
virtual void sample(long iStep)
Write a frame/snapshot to trajectory file.
Loading (input) archive for binary istream.
Saving / output archive for binary ostream.
void serialize(Archive &ar, const unsigned int version)
Serialize this ParamComponent as a string.
ScalarParam< Type > & read(std::istream &in, const char *label, Type &value)
Add and read a new required ScalarParam < Type > object.
void setClassName(const char *className)
Set class name string.
virtual void save(Serializable::OArchive &ar)
Saves all parameters to an archive.
virtual void loadParameters(Serializable::IArchive &ar)
Load state from archive, without adding Begin and End lines.
File containing preprocessor macros for error handling.
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.