12 #ifndef SST_CORE_CONFIGGRAPH_OUTPUT_H
13 #define SST_CORE_CONFIGGRAPH_OUTPUT_H
15 #include "sst/core/configGraph.h"
16 #include "sst/core/params.h"
31 exMsg = (
char*)malloc(
sizeof(
char) * (strlen(msg) + 1));
32 std::strcpy(exMsg, msg);
35 virtual const char* what()
const noexcept
override {
return exMsg; }
A Configuration Graph A graph representing Components and Links.
Definition: configGraph.h:390
Class to contain SST Simulation Configuration variables.
Definition: config.h:39
Definition: configGraphOutput.h:27
Definition: configGraphOutput.h:42
std::vector< std::string > getParamsLocalKeys(const Params ¶ms) const
Get a vector of the local keys.
Definition: configGraphOutput.h:84
std::vector< std::string > getSubscribedGlobalParamSets(const Params ¶ms) const
Get a vector of the global param sets this Params object is subscribed to.
Definition: configGraphOutput.h:95
static std::map< std::string, std::string > getGlobalParamSet(const std::string &name)
Get a named global parameter set.
Definition: configGraphOutput.h:61
static std::vector< std::string > getGlobalParamSetNames()
Get a vector of the names of available global parameter sets.
Definition: configGraphOutput.h:74
Parameter store.
Definition: params.h:56
static std::map< std::string, std::string > getGlobalParamSet(const std::string &name)
Get a named global parameter set.
Definition: params.cc:396
std::vector< std::string > getSubscribedGlobalParamSets() const
Get a vector of the global param sets this Params object is subscribed to.
Definition: params.cc:433
std::vector< std::string > getLocalKeys() const
Get a vector of the local keys.
Definition: params.cc:421
static std::vector< std::string > getGlobalParamSetNames()
Get a vector of the names of available global parameter sets.
Definition: params.cc:409