A Discrete-Event Network Simulator
API
Loading...
Searching...
No Matches
adhoc-aloha-noack-ideal-phy-helper.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2010 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 ADHOC_ALOHA_NOACK_IDEAL_PHY_HELPER_H
21#define ADHOC_ALOHA_NOACK_IDEAL_PHY_HELPER_H
22
23#include <ns3/attribute.h>
24#include <ns3/net-device-container.h>
25#include <ns3/node-container.h>
26#include <ns3/object-factory.h>
27#include <ns3/queue.h>
28
29#include <string>
30
31namespace ns3
32{
33
34class SpectrumValue;
35class SpectrumChannel;
36
42{
43 public:
46
52 void SetChannel(Ptr<SpectrumChannel> channel);
53
59 void SetChannel(std::string channelName);
60
67
74
81 void SetPhyAttribute(std::string name, const AttributeValue& v);
82
89 void SetDeviceAttribute(std::string n1, const AttributeValue& v1);
90
98 template <typename... Ts>
99 void SetAntenna(std::string type, Ts&&... args);
100
115 NetDeviceContainer Install(std::string nodeName) const;
116
117 protected:
125};
126
127/***************************************************************
128 * Implementation of the templates declared above.
129 ***************************************************************/
130
131template <typename... Ts>
132void
133AdhocAlohaNoackIdealPhyHelper::SetAntenna(std::string type, Ts&&... args)
134{
135 m_antenna = ObjectFactory(std::forward<Ts>(args)...);
136}
137
138} // namespace ns3
139
140#endif /* ADHOC_ALOHA_NOACK_IDEAL_PHY_HELPER_H */
void SetPhyAttribute(std::string name, const AttributeValue &v)
ObjectFactory m_queue
Object factory for the Queue objects.
void SetTxPowerSpectralDensity(Ptr< SpectrumValue > txPsd)
void SetDeviceAttribute(std::string n1, const AttributeValue &v1)
Ptr< SpectrumValue > m_noisePsd
Noise power spectral density.
void SetAntenna(std::string type, Ts &&... args)
Ptr< SpectrumValue > m_txPsd
Tx power spectral density.
void SetNoisePowerSpectralDensity(Ptr< SpectrumValue > noisePsd)
ObjectFactory m_phy
Object factory for the phy objects.
ObjectFactory m_antenna
Object factory for the Antenna objects.
ObjectFactory m_device
Object factory for the NetDevice objects.
void SetChannel(Ptr< SpectrumChannel > channel)
set the SpectrumChannel that will be used by SpectrumPhy instances created by this helper
NetDeviceContainer Install(NodeContainer c) const
Hold a value for an Attribute.
Definition: attribute.h:70
holds a vector of ns3::NetDevice pointers
keep track of a set of node pointers.
Instantiate subclasses of ns3::Object.
Smart pointer class similar to boost::intrusive_ptr.
Definition: ptr.h:77
Every class exported by the ns3 library is enclosed in the ns3 namespace.