Simple Module GlobalStatistics

Package: oversim.common
File: src/common/GlobalStatistics.ned

C++ definition

Module to record global statistics

GlobalStatistics

Usage diagram:

The following diagram shows usage relationships between types. Unresolved types are missing from the diagram. Click here to see the full picture.

Inheritance diagram:

The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram. Click here to see the full picture.

Used in compound modules:

Name Type Description
GlobalObserver compound module

global module that contains the globalNodeList and the globalStatistics module

Parameters:

Name Type Default value Description
outputMinMax bool

enable output of minimum and maximum for scalars

outputStdDev bool

enable output of standard deviation for scalars

measureNetwInitPhase bool

fetch statistics in init phase?

globalStatTimerInterval double

interval length of periodic statistic timer

Source code:

//
// Module to record global statistics
//
simple GlobalStatistics
{
    parameters:
        bool outputMinMax;  // enable output of minimum and maximum for scalars
        bool outputStdDev;  // enable output of standard deviation for scalars
        bool measureNetwInitPhase;    // fetch statistics in init phase?
        double globalStatTimerInterval @unit(s);    // interval length of periodic statistic timer
}