A Discrete-Event Network Simulator
API
lte-spectrum-signal-parameters.h
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 #ifndef LTE_SPECTRUM_SIGNAL_PARAMETERS_H
23 #define LTE_SPECTRUM_SIGNAL_PARAMETERS_H
24 
25 
26 #include <ns3/spectrum-signal-parameters.h>
27 
28 namespace ns3 {
29 
30 class PacketBurst;
31 class LteControlMessage;
32 
33 
40 {
41 
42  // inherited from SpectrumSignalParameters
44 
49 
55 
60 };
61 
62 
71 {
72 
73  // inherited from SpectrumSignalParameters
75 
80 
86 
91 
92  std::list<Ptr<LteControlMessage> > ctrlMsgList;
93 
94  uint16_t cellId;
95 };
96 
97 
104 {
105 
106  // inherited from SpectrumSignalParameters
108 
113 
119 
120 
121  std::list<Ptr<LteControlMessage> > ctrlMsgList;
122 
123  uint16_t cellId;
124  bool pss;
125 };
126 
127 
128 
135 {
136 
137  // inherited from SpectrumSignalParameters
139 
144 
150 
151  uint16_t cellId;
152 };
153 
154 
155 } // namespace ns3
156 
157 
158 #endif /* LTE_SPECTRUM_SIGNAL_PARAMETERS_H */
Smart pointer class similar to boost::intrusive_ptr.
Definition: ptr.h:74
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.