1#ifndef RPG_CONCENTRATION_WRITER_H
2#define RPG_CONCENTRATION_WRITER_H
17 template <
int D>
class System;
18 template <
int D>
class Simulator;
61 virtual void sample(
long iStep);
76 std::ofstream outputFile_;
79 std::string filename_;
114 void writeFrame(std::ofstream& out,
long iStep);
131 {
return *systemPtr_; }
136 {
return *simulatorPtr_; }
138 #ifndef RPG_CONCENTRATION_WRITER_TPP
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.
virtual void setup()
Clear nSample counter.
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.
virtual ~ConcentrationWriter()
Destructor.
long isInitialized_
Has readParam been called?
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).
Main class for calculations that represent one system.
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.
Utility classes for scientific computation.