A Discrete-Event Network Simulator
API
Loading...
Searching...
No Matches
spectrum-model-ism2400MHz-res1MHz.cc
Go to the documentation of this file.
1/*
2 * Copyright (c) 2009 CTTC
3 *
4 * SPDX-License-Identifier: GPL-2.0-only
5 *
6 * Author: Nicola Baldo <nbaldo@cttc.es>
7 */
8
10
11namespace ns3
12{
13
14/**
15 * \ingroup spectrum
16 * Spectrum model logger for frequencies in the 2.4 GHz ISM band
17 * with 1 MHz resolution.
18 */
20
21/**
22 * \ingroup spectrum
23 *
24 * Static initializer class for Spectrum model logger for
25 * frequencies in the 2.4 GHz ISM band with 1 MHz resolution.
26 */
28{
29 public:
31 {
32 std::vector<double> freqs;
33 freqs.reserve(100);
34 for (int i = 0; i < 100; ++i)
35 {
36 freqs.push_back((i + 2400) * 1e6);
37 }
38
40 }
41};
42
43/**
44 * \ingroup spectrum
45 * Static variable for analyzer initialization
46 */
47static_SpectrumModelIsm2400MhzRes1Mhz_initializer
49
50} // namespace ns3
Smart pointer class similar to boost::intrusive_ptr.
Static initializer class for Spectrum model logger for frequencies in the 2.4 GHz ISM band with 1 MHz...
Ptr< T > Create(Ts &&... args)
Create class instances by constructors with varying numbers of arguments and return them by Ptr.
Definition ptr.h:436
static_SpectrumModelIsm2400MhzRes1Mhz_initializer g_static_SpectrumModelIsm2400MhzRes1Mhz_initializer_instance
Static variable for analyzer initialization.
Ptr< SpectrumModel > SpectrumModelIsm2400MhzRes1Mhz
Spectrum model logger for frequencies in the 2.4 GHz ISM band with 1 MHz resolution.
Every class exported by the ns3 library is enclosed in the ns3 namespace.