Skip to main content

setOutput

Configure how the Statistics in the group should be written.

Syntax​

group.setOutput(output)

Parameters​

  • output (type: sst.StatisticOutput) StatisticOutput object that will record the data
  • returns none

Example​

import sst

statGroup = sst.StatisticGroup("StatGroup")
statisticOutput = sst.StatisticOutput("sst.statOutputConsole")
statGroup.setOutput(statisticOutput)

Import​

import sst