A Discrete-Event Network Simulator
API
spectrum-signal-parameters.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2011 CTTC
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License version 2 as
6  * published by the Free Software Foundation;
7  *
8  * This program is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11  * GNU General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License
14  * along with this program; if not, write to the Free Software
15  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16  *
17  * Author: Nicola Baldo <nbaldo@cttc.es>
18  */
19 
20 #ifndef SPECTRUM_SIGNAL_PARAMETERS_H
21 #define SPECTRUM_SIGNAL_PARAMETERS_H
22 
23 #include <ns3/nstime.h>
24 #include <ns3/ptr.h>
25 #include <ns3/simple-ref-count.h>
26 
27 namespace ns3
28 {
29 
30 class SpectrumPhy;
31 class SpectrumValue;
32 class AntennaModel;
33 
53 struct SpectrumSignalParameters : public SimpleRefCount<SpectrumSignalParameters>
54 {
59 
63  virtual ~SpectrumSignalParameters();
64 
70 
82  virtual Ptr<SpectrumSignalParameters> Copy() const;
83 
96 
104 
109 
114 };
115 
116 } // namespace ns3
117 
118 #endif /* SPECTRUM_SIGNAL_PARAMETERS_H */
A template-based reference counting class.
Simulation virtual time values and global simulation resolution.
Definition: nstime.h:105
Every class exported by the ns3 library is enclosed in the ns3 namespace.
This struct provides the generic signal representation to be used by all wireless technologies.
Ptr< AntennaModel > txAntenna
The AntennaModel instance that was used to transmit this signal.
Time duration
The duration of the packet transmission.
Ptr< SpectrumPhy > txPhy
The SpectrumPhy instance that is making the transmission.
virtual Ptr< SpectrumSignalParameters > Copy() const
make a "virtual" copy of this class, where "virtual" refers to the fact that if the actual object is ...
Ptr< SpectrumValue > psd
The Power Spectral Density of the waveform, in linear units.