Class to generate OMNeT output. More...
Inheritance diagram for ns3::OmnetDataOutput::OmnetOutputCallback:
Collaboration diagram for ns3::OmnetDataOutput::OmnetOutputCallback:Public Member Functions | |
| OmnetOutputCallback (std::ostream *scalar) | |
| Constructor. More... | |
| void | OutputSingleton (std::string context, std::string name, double val) |
| Generates a single data output. More... | |
| void | OutputSingleton (std::string context, std::string name, int val) |
| Generates a single data output. More... | |
| void | OutputSingleton (std::string context, std::string name, std::string val) |
| Generates a single data output. More... | |
| void | OutputSingleton (std::string context, std::string name, Time val) |
| Generates a single data output. More... | |
| void | OutputSingleton (std::string context, std::string name, uint32_t val) |
| Generates a single data output. More... | |
| void | OutputStatistic (std::string context, std::string name, const StatisticalSummary *statSum) |
| Generates data statistics. More... | |
Public Member Functions inherited from ns3::DataOutputCallback | |
| virtual | ~DataOutputCallback () |
| Destructor. More... | |
Private Attributes | |
| std::ostream * | m_scalar |
| output stream More... | |
Class to generate OMNeT output.
Definition at line 61 of file omnet-data-output.h.
| OmnetDataOutput::OmnetOutputCallback::OmnetOutputCallback | ( | std::ostream * | scalar | ) |
Constructor.
| scalar | the output stream |
Definition at line 150 of file omnet-data-output.cc.
References NS_LOG_FUNCTION.
|
virtual |
Generates a single data output.
| context | the output context |
| name | the output name |
| val | the value |
Implements ns3::DataOutputCallback.
Definition at line 216 of file omnet-data-output.cc.
References NS_LOG_FUNCTION.
|
virtual |
Generates a single data output.
| context | the output context |
| name | the output name |
| val | the value |
Implements ns3::DataOutputCallback.
Definition at line 186 of file omnet-data-output.cc.
References NS_LOG_FUNCTION.
|
virtual |
Generates a single data output.
| context | the output context |
| name | the output name |
| val | the value |
Implements ns3::DataOutputCallback.
Definition at line 231 of file omnet-data-output.cc.
References NS_LOG_FUNCTION.
|
virtual |
Generates a single data output.
| context | the output context |
| name | the output name |
| val | the value |
Implements ns3::DataOutputCallback.
Definition at line 246 of file omnet-data-output.cc.
References ns3::Time::GetTimeStep(), and NS_LOG_FUNCTION.
Here is the call graph for this function:
|
virtual |
Generates a single data output.
| context | the output context |
| name | the output name |
| val | the value |
Implements ns3::DataOutputCallback.
Definition at line 201 of file omnet-data-output.cc.
References NS_LOG_FUNCTION.
|
virtual |
Generates data statistics.
| context | the output context |
| name | the output name |
| statSum | the stats to print |
Implements ns3::DataOutputCallback.
Definition at line 158 of file omnet-data-output.cc.
References ns3::StatisticalSummary::getCount(), ns3::StatisticalSummary::getMax(), ns3::StatisticalSummary::getMean(), ns3::StatisticalSummary::getMin(), ns3::StatisticalSummary::getSqrSum(), ns3::StatisticalSummary::getStddev(), ns3::StatisticalSummary::getSum(), ns3::isNaN(), and NS_LOG_FUNCTION.
Here is the call graph for this function:
|
private |
output stream
Definition at line 130 of file omnet-data-output.h.