Move TraceFadingLossModel from lte to spectrum module

This commit is contained in:
Alexander Krotov
2019-03-01 14:24:24 +03:00
committed by Natale Patriciello
parent 5b5282f066
commit 4227f89ec7
4 changed files with 4 additions and 4 deletions

View File

@@ -85,7 +85,6 @@ def build(bld):
'model/cqa-ff-mac-scheduler.cc',
'model/epc-gtpu-header.cc',
'model/epc-gtpc-header.cc',
'model/trace-fading-loss-model.cc',
'model/epc-enb-application.cc',
'model/epc-sgw-pgw-application.cc',
'model/epc-sgw-application.cc',
@@ -278,7 +277,6 @@ def build(bld):
'model/tdtbfq-ff-mac-scheduler.h',
'model/pss-ff-mac-scheduler.h',
'model/cqa-ff-mac-scheduler.h',
'model/trace-fading-loss-model.h',
'model/epc-gtpu-header.h',
'model/epc-gtpc-header.h',
'model/epc-enb-application.h',

View File

@@ -59,7 +59,7 @@ TraceFadingLossModel::GetTypeId (void)
{
static TypeId tid = TypeId ("ns3::TraceFadingLossModel")
.SetParent<SpectrumPropagationLossModel> ()
.SetGroupName("Lte")
.SetGroupName ("Spectrum")
.AddConstructor<TraceFadingLossModel> ()
.AddAttribute ("TraceFilename",
"Name of file to load a trace from.",

View File

@@ -37,7 +37,7 @@ class MobilityModel;
/**
* \ingroup lte
* \ingroup spectrum
*
* \brief fading loss model based on precalculated fading traces
*/

View File

@@ -29,6 +29,7 @@ def build(bld):
'model/non-communicating-net-device.cc',
'model/microwave-oven-spectrum-value-helper.cc',
'model/tv-spectrum-transmitter.cc',
'model/trace-fading-loss-model.cc',
'helper/spectrum-helper.cc',
'helper/adhoc-aloha-noack-ideal-phy-helper.cc',
'helper/waveform-generator-helper.cc',
@@ -74,6 +75,7 @@ def build(bld):
'model/non-communicating-net-device.h',
'model/microwave-oven-spectrum-value-helper.h',
'model/tv-spectrum-transmitter.h',
'model/trace-fading-loss-model.h',
'helper/spectrum-helper.h',
'helper/adhoc-aloha-noack-ideal-phy-helper.h',
'helper/waveform-generator-helper.h',