SetGroupName for stats module

This commit is contained in:
Tom Henderson
2015-05-05 19:35:31 -07:00
parent c292a5853c
commit 94d1b71324
11 changed files with 11 additions and 0 deletions

View File

@@ -39,6 +39,7 @@ BooleanProbe::GetTypeId ()
{
static TypeId tid = TypeId ("ns3::BooleanProbe")
.SetParent<Probe> ()
.SetGroupName ("Stats")
.AddConstructor<BooleanProbe> ()
.AddTraceSource ( "Output",
"The bool that serves as output for this probe",

View File

@@ -35,6 +35,7 @@ DataCollectionObject::GetTypeId (void)
{
static TypeId tid = TypeId ("ns3::DataCollectionObject")
.SetParent<Object> ()
.SetGroupName ("Stats")
.AddConstructor<DataCollectionObject> ()
.AddAttribute ( "Name",
"Object's name",

View File

@@ -39,6 +39,7 @@ DoubleProbe::GetTypeId ()
{
static TypeId tid = TypeId ("ns3::DoubleProbe")
.SetParent<Probe> ()
.SetGroupName ("Stats")
.AddConstructor<DoubleProbe> ()
.AddTraceSource ( "Output",
"The double that serves as output for this probe",

View File

@@ -37,6 +37,7 @@ FileAggregator::GetTypeId ()
{
static TypeId tid = TypeId ("ns3::FileAggregator")
.SetParent<DataCollectionObject> ()
.SetGroupName ("Stats")
;
return tid;

View File

@@ -37,6 +37,7 @@ GnuplotAggregator::GetTypeId ()
{
static TypeId tid = TypeId ("ns3::GnuplotAggregator")
.SetParent<DataCollectionObject> ()
.SetGroupName ("Stats")
;
return tid;

View File

@@ -35,6 +35,7 @@ Probe::GetTypeId ()
{
static TypeId tid = TypeId ("ns3::Probe")
.SetParent<DataCollectionObject> ()
.SetGroupName ("Stats")
.AddAttribute ("Start",
"Time data collection starts",
TimeValue (Seconds (0)),

View File

@@ -40,6 +40,7 @@ TimeProbe::GetTypeId ()
{
static TypeId tid = TypeId ("ns3::TimeProbe")
.SetParent<Probe> ()
.SetGroupName ("Stats")
.AddConstructor<TimeProbe> ()
.AddTraceSource ("Output",
"The double valued (units of seconds) probe output",

View File

@@ -38,6 +38,7 @@ TimeSeriesAdaptor::GetTypeId (void)
{
static TypeId tid = TypeId ("ns3::TimeSeriesAdaptor")
.SetParent<DataCollectionObject> ()
.SetGroupName ("Stats")
.AddConstructor<TimeSeriesAdaptor> ()
.AddTraceSource ( "Output",
"The current simulation time versus "

View File

@@ -38,6 +38,7 @@ Uinteger16Probe::GetTypeId ()
{
static TypeId tid = TypeId ("ns3::Uinteger16Probe")
.SetParent<Probe> ()
.SetGroupName ("Stats")
.AddConstructor<Uinteger16Probe> ()
.AddTraceSource ( "Output",
"The uint16_t that serves as output for this probe",

View File

@@ -38,6 +38,7 @@ Uinteger32Probe::GetTypeId ()
{
static TypeId tid = TypeId ("ns3::Uinteger32Probe")
.SetParent<Probe> ()
.SetGroupName ("Stats")
.AddConstructor<Uinteger32Probe> ()
.AddTraceSource ( "Output",
"The uint32_t that serves as output for this probe",

View File

@@ -38,6 +38,7 @@ Uinteger8Probe::GetTypeId ()
{
static TypeId tid = TypeId ("ns3::Uinteger8Probe")
.SetParent<Probe> ()
.SetGroupName ("Stats")
.AddConstructor<Uinteger8Probe> ()
.AddTraceSource ( "Output",
"The uint8_t that serves as output for this probe",