12 #ifndef _H_SST_CORE_STATISTICS_OUTPUT_JSON
13 #define _H_SST_CORE_STATISTICS_OUTPUT_JSON
15 #include "sst/core/sst_types.h"
17 #include <sst/core/statapi/statoutput.h>
20 namespace Statistics {
76 void implOutputField(fieldHandle_t fieldHandle, uint32_t data)
override;
78 void implOutputField(fieldHandle_t fieldHandle, uint64_t data)
override;
93 std::string m_FilePath;
94 std::string m_currentComponentName;
95 std::string m_currentStatisticName;
96 std::string m_currentStatisticSubId;
97 std::string m_currentStatisticType;
102 bool m_processedAnyStats;
103 int m_curIndentLevel;
The class for statistics output to a JSON formatted file
Definition: statoutputjson.h:27
void printUsage() override
Print out usage for this Statistic Output.
Definition: statoutputjson.cc:68
Forms the base class for statistics output generation within the SST core.
Definition: statoutput.h:47
void implStartOutputEntries(StatisticBase *statistic) override
Implementation function for the start of output.
Definition: statoutputjson.cc:122
Forms the base class for statistics gathering within SST.
Definition: statbase.h:61
void implStopOutputEntries() override
Implementation function for the end of output.
Definition: statoutputjson.cc:169
void implOutputField(fieldHandle_t fieldHandle, int32_t data) override
Implementation functions for output.
void startOfSimulation() override
Indicate to Statistic Output that simulation started.
Definition: statoutputjson.cc:80
bool checkOutputParameters() override
Perform a check of provided parameters.
Definition: statoutputjson.cc:36
Parameter store.
Definition: params.h:45
void endOfSimulation() override
Indicate to Statistic Output that simulation ended.
Definition: statoutputjson.cc:101