SST
13.1.0
Structural Simulation Toolkit
|
Forms the base class for statistics output generation within the SST core. More...
#include <statoutput.h>
Public Types | |
using | fieldType_t = StatisticFieldInfo::fieldType_t |
using | fieldHandle_t = StatisticFieldInfo::fieldHandle_t |
using | FieldInfoArray_t = std::vector< StatisticFieldInfo * > |
using | FieldNameMap_t = std::unordered_map< std::string, fieldHandle_t > |
Public Member Functions | |
std::string & | getStatisticOutputName () |
Return the Statistic Output name. | |
Params & | getOutputParameters () |
Return the parameters for the StatisticOutput. | |
virtual bool | acceptsGroups () const |
True if this StatOutput can handle StatisticGroups. | |
virtual void | output (StatisticBase *statistic, bool endOfSimFlag)=0 |
virtual bool | supportsDynamicRegistration () const |
Static Public Member Functions | |
static const std::vector< SST::ElementInfoParam > & | ELI_getParams () |
Protected Member Functions | |
virtual bool | checkOutputParameters ()=0 |
Have the Statistic Output check its parameters. More... | |
virtual void | printUsage ()=0 |
Have Statistic Object print out its usage and parameter info. More... | |
virtual void | startOfSimulation ()=0 |
Indicate to Statistic Output that simulation has started. More... | |
virtual void | endOfSimulation ()=0 |
Indicate to Statistic Output that simulation has ended. More... | |
StatisticOutput (Params &outputParameters) | |
Construct a base StatisticOutput. More... | |
void | setStatisticOutputName (const std::string &name) |
void | lock () |
void | unlock () |
Friends | |
class | SST::Simulation |
class | SST::Statistics::StatisticProcessingEngine |
Forms the base class for statistics output generation within the SST core.
Statistics are gathered by the statistic objects and then processed sent to the derived output object either periodically or by event and/or also at the end of the simulation. A single statistic output will be created by the simulation (per node) and will collect the data per its design.
|
protected |
Construct a base StatisticOutput.
outputParameters | - The parameters for the statistic Output. |
|
protectedpure virtual |
Have the Statistic Output check its parameters.
Implemented in SST::Statistics::StatisticOutputTextBase, SST::Statistics::StatisticOutputJSON, and SST::Statistics::StatisticOutputCSV.
|
protectedpure virtual |
Indicate to Statistic Output that simulation has ended.
Allows object to perform any shutdown required.
Implemented in SST::Statistics::StatisticOutputTextBase, SST::Statistics::StatisticOutputJSON, and SST::Statistics::StatisticOutputCSV.
|
protectedpure virtual |
Have Statistic Object print out its usage and parameter info.
Called when checkOutputParameters() returns false
Implemented in SST::Statistics::StatisticOutputTextBase, SST::Statistics::StatisticOutputJSON, and SST::Statistics::StatisticOutputCSV.
|
protectedpure virtual |
Indicate to Statistic Output that simulation has started.
Allows object to perform any setup required.
Implemented in SST::Statistics::StatisticOutputTextBase, SST::Statistics::StatisticOutputJSON, and SST::Statistics::StatisticOutputCSV.