14#ifndef SST_CORE_MODEL_PYTHON_PYMODEL_STAT_H
15#define SST_CORE_MODEL_PYTHON_PYMODEL_STAT_H
17#include "sst/core/sst_types.h"
18#include "sst/core/warnmacros.h"
20DISABLE_WARN_DEPRECATED_REGISTER
36 explicit PyStatistic(StatisticId_t
id) :
39 virtual ~PyStatistic() {}
41 int compare(PyStatistic* other);
42 StatisticId_t getID();
50extern PyTypeObject PyModel_StatType;
53getStat(PyObject* pobj)
57 PyErr_SetString(PyExc_RuntimeError,
"Failed to find ConfigStatistic");
Definition configGraph.h:134
Definition pymodel_stat.h:33
Definition pymodel_stat.h:46