1#ifndef RPC_AVERAGE_LIST_ANALYZER_H
2#define RPC_AVERAGE_LIST_ANALYZER_H
12#include <util/accumulators/Average.h>
18 template <
int D>
class System;
94 virtual void sample(
long iStep);
122 const std::string&
name(
int i)
const;
194 double value(
int i)
const;
214 std::ofstream outputFile_;
228 int nSamplePerOutput_;
234 bool hasAccumulators_;
246 {
return nSamplePerOutput_; }
288 return accumulators_[i];
305 {
return *systemPtr_; }
307 #ifndef RPC_AVERAGE_LIST_ANALYZER_TPP
Abstract base for periodic output and/or analysis actions.
bool isAtInterval(long counter) const
Return true iff counter is a multiple of the interval.
void readInterval(std::istream &in)
Optionally read interval from file, with error checking.
const std::string & outputFileName() const
Return outputFileName string.
int interval() const
Get interval value.
Analyze averages and block averages of several real variables.
void updateAccumulators(long iStep)
Add current value to accumulator, output block average if needed.
void clearAccumulators()
Clear internal state of the accumulator.
int nSamplePerOutput() const
Get value of nSamplePerOutput.
const Average & accumulator(int i) const
Get Average accumulator for a specific value.
void initializeAccumulators(int nValue)
Instantiate Average accumulators and set nSamplePerOutput set nValue.
virtual void setup()
Setup before loop.
virtual void output()
Write final results to file after a simulation.
double value(int i) const
Get current value of a specific variable.
const std::string & name(int i) const
Get name associated with value.
int nValue() const
Get number of variables.
virtual void clear()
Clear accumulators.
System< D > & system()
Return reference to parent system.
virtual void compute()=0
Compute value of sampled quantity.
void setName(int i, std::string name)
Set name of variable.
virtual void sample(long iStep)
Compute a sampled value and update the accumulator.
virtual ~AverageListAnalyzer()
Destructor.
System< D > * systemPtr_
Pointer to the parent system.
AverageListAnalyzer(System< D > &system)
Constructor.
void outputAccumulators()
Write results of statistical analysis to files.
void setValue(int i, double value)
Set current value, used by compute function.
virtual void readParameters(std::istream &in)
Read interval, outputFileName and (optionally) nSamplePerOutput.
Main class for SCFT or PS-FTS simulation of one system.
Calculates the average and variance of a sampled property.
Loading (input) archive for binary istream.
Saving / output archive for binary ostream.
Dynamically allocatable contiguous array template.
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.
ScalarParam< Type > & readOptional(std::istream &in, const char *label, Type &value)
Add and read a new optional ScalarParam < Type > object.
virtual void loadParameters(Serializable::IArchive &ar)
Load state from archive, without adding Begin and End lines.
#define UTIL_CHECK(condition)
Assertion macro suitable for serial or parallel production code.
PSCF package top-level namespace.
Utility classes for scientific computation.