CASM  1.1.0
A Clusters Approach to Statistical Mechanics
CASM::Monte::MonteSampler Class Reference

#include <MonteSampler.hh>

+ Inheritance diagram for CASM::Monte::MonteSampler:

Detailed Description

An abstract base class for sampling and storing data observations.

Definition at line 26 of file MonteSampler.hh.

Public Member Functions

 MonteSampler (const std::string &print_name, double data_confidence, size_type data_initsize)
 Construct sampler that does not need to converge. More...
 
 MonteSampler (const std::string &print_name, double data_prec, double data_confidence, size_type data_initsize)
 Construct sampler that must converge. More...
 
virtual ~MonteSampler ()
 
virtual void sample (const MonteCarlo &mc, const MonteCounter &counter)
 
void clear ()
 Clear all data observations. More...
 
std::pair< bool, size_typeis_equilibrated () const
 Returns pair(true, equil_steps) if equilibration has occured to required precision. More...
 
bool must_converge () const
 Returns true if convergence criteria must be met for Monte Carlo calculation to be complete. More...
 
double requested_precision () const
 Returns requested precision on the mean. More...
 
bool is_converged (size_type equil_samples) const
 Returns true if convergence criteria have been met for data sampled in range [equil_samples, end) More...
 
double mean (size_type equil_samples) const
 Returns <X> for data sampled in range [equil_samples, end) More...
 
double squared_norm (size_type equil_samples) const
 Returns <X*X> for data sampled in range [equil_samples, end) More...
 
double calculated_precision (size_type equil_samples) const
 Returns calculated precision on the mean for data sampled in range [equil_samples, end) More...
 
const MCDatadata () const
 const Access the raw data observation container More...
 
std::string name () const
 Property name for printing. More...
 
std::unique_ptr< MonteSamplerclone () const
 Clone this object. More...
 

Protected Member Functions

MCDatadata ()
 Access the raw data observation container. More...
 

Private Member Functions

virtual MonteSampler_clone () const
 
void _check_convergence (size_type equil_samples) const
 

Private Attributes

bool m_must_converge
 If false, data observations are recorded but shouldn't be used to determine if Monte Carlo run has converged. More...
 
double m_prec
 Requested precision, if must_converge. More...
 
double m_conf
 Requested confidence, if must_converge. More...
 
MCData m_data
 An array of observations, one for every so many steps or passes. More...
 
std::string m_name
 Property name for printing. More...
 
bool m_equilibration_uptodate = false
 
MCDataEquilibration m_equilibration
 
bool m_convergence_uptodate = false
 
size_type m_convergence_start_sample = 0
 
MCDataConvergence m_convergence
 

Constructor & Destructor Documentation

◆ MonteSampler() [1/2]

CASM::Monte::MonteSampler::MonteSampler ( const std::string &  print_name,
double  data_confidence,
size_type  data_initsize 
)

Construct sampler that does not need to converge.

Definition at line 11 of file MonteSampler.cc.

◆ MonteSampler() [2/2]

CASM::Monte::MonteSampler::MonteSampler ( const std::string &  print_name,
double  data_prec,
double  data_confidence,
size_type  data_initsize 
)

Construct sampler that must converge.

Definition at line 19 of file MonteSampler.cc.

◆ ~MonteSampler()

virtual CASM::Monte::MonteSampler::~MonteSampler ( )
inlinevirtual

Definition at line 36 of file MonteSampler.hh.

Member Function Documentation

◆ _check_convergence()

void CASM::Monte::MonteSampler::_check_convergence ( size_type  equil_samples) const
inlineprivate

Definition at line 149 of file MonteSampler.hh.

◆ _clone()

◆ calculated_precision()

double CASM::Monte::MonteSampler::calculated_precision ( size_type  equil_samples) const
inline

Returns calculated precision on the mean for data sampled in range [equil_samples, end)

Definition at line 116 of file MonteSampler.hh.

◆ clear()

void CASM::Monte::MonteSampler::clear ( )
inline

Clear all data observations.

Definition at line 43 of file MonteSampler.hh.

◆ clone()

std::unique_ptr<MonteSampler> CASM::Monte::MonteSampler::clone ( ) const
inline

Clone this object.

Definition at line 134 of file MonteSampler.hh.

◆ data() [1/2]

MCData& CASM::Monte::MonteSampler::data ( )
inlineprotected

Access the raw data observation container.

Definition at line 140 of file MonteSampler.hh.

◆ data() [2/2]

const MCData& CASM::Monte::MonteSampler::data ( ) const
inline

const Access the raw data observation container

Definition at line 128 of file MonteSampler.hh.

◆ is_converged()

bool CASM::Monte::MonteSampler::is_converged ( size_type  equil_samples) const
inline

Returns true if convergence criteria have been met for data sampled in range [equil_samples, end)

Definition at line 75 of file MonteSampler.hh.

◆ is_equilibrated()

std::pair<bool, size_type> CASM::Monte::MonteSampler::is_equilibrated ( ) const
inline

Returns pair(true, equil_steps) if equilibration has occured to required precision.

Definition at line 50 of file MonteSampler.hh.

◆ mean()

double CASM::Monte::MonteSampler::mean ( size_type  equil_samples) const
inline

Returns <X> for data sampled in range [equil_samples, end)

Definition at line 91 of file MonteSampler.hh.

◆ must_converge()

bool CASM::Monte::MonteSampler::must_converge ( ) const
inline

Returns true if convergence criteria must be met for Monte Carlo calculation to be complete.

Definition at line 66 of file MonteSampler.hh.

◆ name()

std::string CASM::Monte::MonteSampler::name ( ) const
inline

Property name for printing.

Definition at line 131 of file MonteSampler.hh.

◆ requested_precision()

double CASM::Monte::MonteSampler::requested_precision ( ) const
inline

Returns requested precision on the mean.

Definition at line 69 of file MonteSampler.hh.

◆ sample()

virtual void CASM::Monte::MonteSampler::sample ( const MonteCarlo mc,
const MonteCounter counter 
)
inlinevirtual

◆ squared_norm()

double CASM::Monte::MonteSampler::squared_norm ( size_type  equil_samples) const
inline

Returns <X*X> for data sampled in range [equil_samples, end)

Definition at line 103 of file MonteSampler.hh.

Member Data Documentation

◆ m_conf

double CASM::Monte::MonteSampler::m_conf
private

Requested confidence, if must_converge.

Definition at line 166 of file MonteSampler.hh.

◆ m_convergence

MCDataConvergence CASM::Monte::MonteSampler::m_convergence
mutableprivate

Definition at line 180 of file MonteSampler.hh.

◆ m_convergence_start_sample

size_type CASM::Monte::MonteSampler::m_convergence_start_sample = 0
mutableprivate

Definition at line 179 of file MonteSampler.hh.

◆ m_convergence_uptodate

bool CASM::Monte::MonteSampler::m_convergence_uptodate = false
mutableprivate

Definition at line 178 of file MonteSampler.hh.

◆ m_data

MCData CASM::Monte::MonteSampler::m_data
private

An array of observations, one for every so many steps or passes.

Definition at line 169 of file MonteSampler.hh.

◆ m_equilibration

MCDataEquilibration CASM::Monte::MonteSampler::m_equilibration
mutableprivate

Definition at line 177 of file MonteSampler.hh.

◆ m_equilibration_uptodate

bool CASM::Monte::MonteSampler::m_equilibration_uptodate = false
mutableprivate

Definition at line 176 of file MonteSampler.hh.

◆ m_must_converge

bool CASM::Monte::MonteSampler::m_must_converge
private

If false, data observations are recorded but shouldn't be used to determine if Monte Carlo run has converged.

Definition at line 160 of file MonteSampler.hh.

◆ m_name

std::string CASM::Monte::MonteSampler::m_name
private

Property name for printing.

Definition at line 172 of file MonteSampler.hh.

◆ m_prec

double CASM::Monte::MonteSampler::m_prec
private

Requested precision, if must_converge.

Definition at line 163 of file MonteSampler.hh.


The documentation for this class was generated from the following files: