A Discrete-Event Network Simulator
API
lte-spectrum-signal-parameters.cc
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2011 CTTC
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License version 2 as
7  * published by the Free Software Foundation;
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17  *
18  * Author: Nicola Baldo <nbaldo@cttc.es>
19  * Modified by Marco Miozzo <mmiozzo@cttc.es> (add data and ctrl diversity)
20  */
21 
22 #include <ns3/log.h>
23 #include <ns3/packet-burst.h>
24 #include <ns3/ptr.h>
25 #include <ns3/lte-spectrum-signal-parameters.h>
26 #include <ns3/lte-control-messages.h>
27 
28 
29 namespace ns3 {
30 
31 NS_LOG_COMPONENT_DEFINE ("LteSpectrumSignalParameters");
32 
34 {
35  NS_LOG_FUNCTION (this);
36 }
37 
40 {
41  NS_LOG_FUNCTION (this << &p);
42  packetBurst = p.packetBurst->Copy ();
43 }
44 
47 {
48  NS_LOG_FUNCTION (this);
49  return Create<LteSpectrumSignalParameters> (*this);
50 }
51 
52 
53 
55 {
56  NS_LOG_FUNCTION (this);
57 }
58 
61 {
62  NS_LOG_FUNCTION (this << &p);
63  cellId = p.cellId;
64  if (p.packetBurst)
65  {
66  packetBurst = p.packetBurst->Copy ();
67  }
69 }
70 
73 {
74  NS_LOG_FUNCTION (this);
75  return Create<LteSpectrumSignalParametersDataFrame> (*this);
76 }
77 
78 
79 
81 {
82  NS_LOG_FUNCTION (this);
83 }
84 
87 {
88  NS_LOG_FUNCTION (this << &p);
89  cellId = p.cellId;
90  pss = p.pss;
92 }
93 
96 {
97  NS_LOG_FUNCTION (this);
98  return Create<LteSpectrumSignalParametersDlCtrlFrame> (*this);
99 }
100 
101 
103 {
104  NS_LOG_FUNCTION (this);
105 }
106 
109 {
110  NS_LOG_FUNCTION (this << &p);
111  cellId = p.cellId;
112 }
113 
116 {
117  NS_LOG_FUNCTION (this);
118  return Create<LteSpectrumSignalParametersUlSrsFrame> (*this);
119 }
120 
121 
122 
123 
124 
125 
126 
127 } // namespace ns3
Smart pointer class similar to boost::intrusive_ptr.
Definition: ptr.h:74
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
Definition: log.h:205
#define NS_LOG_FUNCTION(parameters)
If log level LOG_FUNCTION is enabled, this macro will output all input parameters separated by ",...
Every class exported by the ns3 library is enclosed in the ns3 namespace.
Signal parameters for Lte Data Frame (PDSCH), and eventually after some control messages through othe...
std::list< Ptr< LteControlMessage > > ctrlMsgList
the control message list
virtual Ptr< SpectrumSignalParameters > Copy()
make a "virtual" copy of this class, where "virtual" refers to the fact that if the actual object is ...
Ptr< PacketBurst > packetBurst
The packet burst being transmitted with this signal.
Signal parameters for Lte DL Ctrl Frame (RS, PCFICH and PDCCH)
std::list< Ptr< LteControlMessage > > ctrlMsgList
control message list
virtual Ptr< SpectrumSignalParameters > Copy()
make a "virtual" copy of this class, where "virtual" refers to the fact that if the actual object is ...
virtual Ptr< SpectrumSignalParameters > Copy()
make a "virtual" copy of this class, where "virtual" refers to the fact that if the actual object is ...
Ptr< PacketBurst > packetBurst
The packet burst being transmitted with this signal.
virtual Ptr< SpectrumSignalParameters > Copy()
make a "virtual" copy of this class, where "virtual" refers to the fact that if the actual object is ...
This struct provides the generic signal representation to be used by all wireless technologies.