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.

Inheritance diagram:

The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram.

Used in compound modules:

If a module type shows up more than once, that means it has been defined in more than one NED file.

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
}