PSCF v1.2
rpg/fts/analyzer/ConcentrationWriter.h
1#ifndef RPG_CONCENTRATION_WRITER_H
2#define RPG_CONCENTRATION_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 Rpg {
16
17 template <int D> class System;
18 template <int D> class Simulator;
19
20 using namespace Util;
21
27 template <int D>
28 class ConcentrationWriter : public Analyzer<D>
29 {
30
31 public:
32
37
42 {}
43
49 virtual void readParameters(std::istream& in);
50
54 virtual void setup();
55
61 virtual void sample(long iStep);
62
66 virtual void output();
67
72
73 protected:
74
75 // Output file stream
76 std::ofstream outputFile_;
77
78 // Output filename
79 std::string filename_;
80
83
86
91
96
97 protected:
98
106 void writeHeader(std::ofstream& out);
107
114 void writeFrame(std::ofstream& out, long iStep);
115
119 System<D>& system();
120
125
126 };
127
128 // Get the parent system.
129 template <int D>
131 { return *systemPtr_; }
132
133 //Get parent Simulator object.
134 template <int D>
136 { return *simulatorPtr_; }
137
138 #ifndef RPG_CONCENTRATION_WRITER_TPP
139 // Suppress implicit instantiation
140 extern template class ConcentrationWriter<1>;
141 extern template class ConcentrationWriter<2>;
142 extern template class ConcentrationWriter<3>;
143 #endif
144
145}
146}
147#endif
Abstract base for periodic output and/or analysis actions.
const std::string & outputFileName() const
Return outputFileName string.
bool isAtInterval(long counter) const
Return true iff counter is a multiple of the interval.
Periodically write snapshots to a trajectory file.
long nSample_
Number of configurations dumped thus far (first dump is zero).
ConcentrationWriter(Simulator< D > &simulator, System< D > &system)
Constructor.
Simulator< D > * simulatorPtr_
Pointer to parent Simulator.
virtual void readParameters(std::istream &in)
Read interval and output file name.
virtual void sample(long iStep)
Write a frame/snapshot to trajectory file.
virtual void output()
Close trajectory file after run.
void writeFrame(std::ofstream &out, long iStep)
Write data that should appear in every frame.
Simulator< D > & simulator()
Return reference to parent Simulator.
System< D > & system()
Return reference to parent system.
System< D > * systemPtr_
Pointer to the parent system.
void writeHeader(std::ofstream &out)
Write data that should appear once, at beginning of the file.
Field theoretic simulator (base class).
Definition rpg/System.h:41
Main class for calculations that represent one system.
Definition rpg/System.h:107
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.
File containing preprocessor macros for error handling.
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.