1#ifndef RPG_AVERAGE_LIST_ANALYZER_H
2#define RPG_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_;
245 {
return nSamplePerOutput_; }
287 return accumulators_[i];
304 {
return *systemPtr_; }
306 #ifndef RPG_AVERAGE_LIST_ANALYZER_TPP
Abstract base for periodic output and/or analysis actions.
const std::string & outputFileName() const
Return outputFileName string.
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.
AverageListAnalyzer(System< D > &system)
Constructor.
System< D > * systemPtr_
Pointer to the parent system.
virtual ~AverageListAnalyzer()
Destructor.
void setName(int i, std::string name)
Set name of variable.
virtual void readParameters(std::istream &in)
Read interval, outputFileName and (optionally) nSamplePerOutput.
void setValue(int i, double value)
Set current value, used by compute function.
virtual void setup()
Setup before loop.
void outputAccumulators()
Write results of statistical analysis to files.
System< D > & system()
Return reference to parent system.
void clearAccumulators()
Clear internal state of the accumulator.
virtual void compute()=0
Compute value of sampled quantity.
const Average & accumulator(int i) const
Get Average accumulator for a specific value.
int nValue() const
Get number of variables.
const std::string & name(int i) const
Get name associated with value.
int nSamplePerOutput() const
Get value of nSamplePerOutput.
void updateAccumulators(long iStep)
Add current value to accumulator, output block average if needed.
void initializeAccumulators(int nValue)
Instantiate Average accumulators and set nSamplePerOutput set nValue.
virtual void sample(long iStep)
Compute a sampled value and update the accumulator.
virtual void clear()
Clear accumulators.
double value(int i) const
Get current value of a specific variable.
virtual void output()
Write final results to file after a simulation.
Main class for calculations that represent 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.