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-model-300kHz-300GHz-log.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
9
#include "
spectrum-model-300kHz-300GHz-log.h
"
10
11
namespace
ns3
12
{
13
14
/**
15
* @ingroup spectrum
16
* Spectrum model logger for frequencies between 300 KHz 300 GHz
17
*/
18
Ptr<SpectrumModel>
19
SpectrumModel300Khz300GhzLog
()
20
{
21
std::vector<double> freqs;
22
for
(
double
f = 3e5; f < 3e11; f = f * 2)
23
{
24
freqs.push_back(f);
25
}
26
static
Ptr<SpectrumModel>
model =
Create<SpectrumModel>
(freqs);
27
return
model;
28
}
29
30
}
// namespace ns3
ns3::Ptr
Smart pointer class similar to boost::intrusive_ptr.
Definition
mpi-test-fixtures.h:37
ns3::Create
Ptr< T > Create(Ts &&... args)
Create class instances by constructors with varying numbers of arguments and return them by Ptr.
Definition
ptr.h:436
ns3::SpectrumModel300Khz300GhzLog
Ptr< SpectrumModel > SpectrumModel300Khz300GhzLog()
Spectrum model logger for frequencies between 300 KHz 300 GHz.
Definition
spectrum-model-300kHz-300GHz-log.cc:19
ns3
Every class exported by the ns3 library is enclosed in the ns3 namespace.
spectrum-model-300kHz-300GHz-log.h
src
spectrum
model
spectrum-model-300kHz-300GHz-log.cc
Generated on Mon Feb 17 2025 18:20:54 for ns-3 by
1.11.0