1#ifndef RPG_AVERAGE_ANALYZER_H
2#define RPG_AVERAGE_ANALYZER_H
12#include <util/accumulators/Average.h>
17 template <
int D>
class System;
18 template <
int D>
class Simulator;
75 virtual void sample(
long iStep);
133 std::ofstream outputFile_;
147 int nSamplePerOutput_;
156 {
return *simulatorPtr_; }
161 {
return *systemPtr_; }
166 {
return nSamplePerOutput_; }
168 #ifndef RPG_AVERAGE_ANALYZER_TPP
Abstract base for periodic output and/or analysis actions.
const std::string & outputFileName() const
Return outputFileName string.
void readOutputFileName(std::istream &in)
Read outputFileName from file.
int interval() const
Get interval value.
void readInterval(std::istream &in)
Read interval from file, with error checking.
bool isAtInterval(long counter) const
Return true iff counter is a multiple of the interval.
Analyze averages and block averages of several real variables.
Average accumulator_
Average object.
virtual void readParameters(std::istream &in)
Read interval, outputFileName and (optionally) nSamplePerOutput.
virtual void sample(long iStep)
Compute a sampled value and update the accumulator.
AverageAnalyzer(Simulator< D > &simulator, System< D > &system)
Constructor.
virtual double compute()=0
Compute value of sampled quantity.
virtual void setup()
Setup before loop.
virtual void outputValue(int step, double value)
Output a sampled or block average value.
virtual ~AverageAnalyzer()
Destructor.
int nSamplePerOutput() const
Get value of nSamplePerOutput.
Simulator< D > & simulator()
Return reference to parent simulator.
System< D > & system()
Return reference to parent system.
virtual void output()
Write final results to file after a simulation.
Field theoretic simulator (base class).
Main class for calculations that represent one system.
Calculates the average and variance of a sampled property.
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.
ScalarParam< Type > & readOptional(std::istream &in, const char *label, Type &value)
Add and read a new optional ScalarParam < Type > object.
PSCF package top-level namespace.
Utility classes for scientific computation.