From 7d4fcd6779a7974444c83039a8ba26d34d485218 Mon Sep 17 00:00:00 2001 From: Nicola Baldo Date: Thu, 12 Jan 2012 13:37:20 +0100 Subject: [PATCH] update lena-pathloss-traces with new pathloss trace name --- src/lte/examples/lena-pathloss-traces.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lte/examples/lena-pathloss-traces.cc b/src/lte/examples/lena-pathloss-traces.cc index db1f62bb3..744136d7c 100644 --- a/src/lte/examples/lena-pathloss-traces.cc +++ b/src/lte/examples/lena-pathloss-traces.cc @@ -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 ();