A Discrete-Event Network Simulator
Home
Tutorials ▼
English
Documentation ▼
Installation
Manual
Models
Contributing
Wiki
Development ▼
API Docs
Issue Tracker
Merge Requests
API
Loading...
Searching...
No Matches
spectrum-signal-parameters.cc
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
#include <ns3/antenna-model.h>
21
#include <ns3/log.h>
22
#include <ns3/spectrum-phy.h>
23
#include <ns3/spectrum-signal-parameters.h>
24
#include <ns3/spectrum-value.h>
25
26
namespace
ns3
27
{
28
29
NS_LOG_COMPONENT_DEFINE
(
"SpectrumSignalParameters"
);
30
31
SpectrumSignalParameters::SpectrumSignalParameters
()
32
{
33
NS_LOG_FUNCTION
(
this
);
34
}
35
36
SpectrumSignalParameters::~SpectrumSignalParameters
()
37
{
38
NS_LOG_FUNCTION
(
this
);
39
}
40
41
SpectrumSignalParameters::SpectrumSignalParameters
(
const
SpectrumSignalParameters
& p)
42
{
43
NS_LOG_FUNCTION
(
this
<< &p);
44
psd
= p.
psd
->
Copy
();
45
duration
= p.
duration
;
46
txPhy
= p.
txPhy
;
47
txAntenna
= p.
txAntenna
;
48
}
49
50
Ptr<SpectrumSignalParameters>
51
SpectrumSignalParameters::Copy
()
const
52
{
53
NS_LOG_FUNCTION
(
this
);
54
return
Create<SpectrumSignalParameters>(*
this
);
55
}
56
57
}
// namespace ns3
ns3::Ptr
Smart pointer class similar to boost::intrusive_ptr.
Definition:
ptr.h:78
ns3::SpectrumValue::Copy
Ptr< SpectrumValue > Copy() const
Definition:
spectrum-value.cc:377
NS_LOG_COMPONENT_DEFINE
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
Definition:
log.h:202
NS_LOG_FUNCTION
#define NS_LOG_FUNCTION(parameters)
If log level LOG_FUNCTION is enabled, this macro will output all input parameters separated by ",...
Definition:
log-macros-enabled.h:238
ns3
Every class exported by the ns3 library is enclosed in the ns3 namespace.
ns3::SpectrumSignalParameters
This struct provides the generic signal representation to be used by all wireless technologies.
Definition:
spectrum-signal-parameters.h:54
ns3::SpectrumSignalParameters::txAntenna
Ptr< AntennaModel > txAntenna
The AntennaModel instance that was used to transmit this signal.
Definition:
spectrum-signal-parameters.h:113
ns3::SpectrumSignalParameters::SpectrumSignalParameters
SpectrumSignalParameters()
default constructor
Definition:
spectrum-signal-parameters.cc:31
ns3::SpectrumSignalParameters::~SpectrumSignalParameters
virtual ~SpectrumSignalParameters()
destructor
Definition:
spectrum-signal-parameters.cc:36
ns3::SpectrumSignalParameters::duration
Time duration
The duration of the packet transmission.
Definition:
spectrum-signal-parameters.h:103
ns3::SpectrumSignalParameters::txPhy
Ptr< SpectrumPhy > txPhy
The SpectrumPhy instance that is making the transmission.
Definition:
spectrum-signal-parameters.h:108
ns3::SpectrumSignalParameters::Copy
virtual Ptr< SpectrumSignalParameters > Copy() const
make a "virtual" copy of this class, where "virtual" refers to the fact that if the actual object is ...
Definition:
spectrum-signal-parameters.cc:51
ns3::SpectrumSignalParameters::psd
Ptr< SpectrumValue > psd
The Power Spectral Density of the waveform, in linear units.
Definition:
spectrum-signal-parameters.h:95
src
spectrum
model
spectrum-signal-parameters.cc
Generated on Sun Jul 2 2023 18:22:03 for ns-3 by
1.9.6