update lena-pathloss-traces with new pathloss trace name

This commit is contained in:
Nicola Baldo
2012-01-12 13:37:20 +01:00
parent 5467fedf9d
commit 7d4fcd6779

View File

@@ -247,9 +247,9 @@ int main (int argc, char *argv[])
UplinkGlobalPathlossDatabase ulPathlossDb;
// we rely on the fact that LteHelper creates the DL channel object first, then the UL channel object,
// hence the former will have index 0 and the latter 1
Config::Connect ("/ChannelList/0/PropagationLoss",
Config::Connect ("/ChannelList/0/PathLoss",
MakeCallback (&DownlinkGlobalPathlossDatabase::UpdatePathloss, &dlPathlossDb));
Config::Connect ("/ChannelList/1/PropagationLoss",
Config::Connect ("/ChannelList/1/PathLoss",
MakeCallback (&UplinkGlobalPathlossDatabase::UpdatePathloss, &ulPathlossDb));
Simulator::Run ();