A Discrete-Event Network Simulator
Home
Tutorials ▼
English
Portuguese
Docs ▼
Wiki
Manual
Models
Develop ▼
API
Bugs
API
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Groups
Pages
phy-stats-calculator.h
Go to the documentation of this file.
1
/* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil; -*- */
2
/*
3
* Copyright (c) 2011 Centre Tecnologic de Telecomunicacions de Catalunya (CTTC)
4
*
5
* This program is free software; you can redistribute it and/or modify
6
* it under the terms of the GNU General Public License version 2 as
7
* published by the Free Software Foundation;
8
*
9
* This program is distributed in the hope that it will be useful,
10
* but WITHOUT ANY WARRANTY; without even the implied warranty of
11
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12
* GNU General Public License for more details.
13
*
14
* You should have received a copy of the GNU General Public License
15
* along with this program; if not, write to the Free Software
16
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17
*
18
* Author: Jaume Nin <jnin@cttc.es>
19
*/
20
21
#ifndef PHY_STATS_CALCULATOR_H_
22
#define PHY_STATS_CALCULATOR_H_
23
24
#include "ns3/lte-stats-calculator.h"
25
#include "ns3/nstime.h"
26
#include "ns3/uinteger.h"
27
#include "ns3/spectrum-value.h"
28
#include <string>
29
#include <fstream>
30
31
namespace
ns3 {
32
53
class
PhyStatsCalculator
:
public
LteStatsCalculator
54
{
55
public
:
59
PhyStatsCalculator
();
60
64
virtual
~PhyStatsCalculator
();
65
69
static
TypeId
GetTypeId
(
void
);
70
76
void
SetCurrentCellRsrpSinrFilename
(std::string filename);
77
81
std::string
GetCurrentCellRsrpSinrFilename
(
void
);
82
88
void
SetUeSinrFilename
(std::string filename);
89
93
std::string
GetUeSinrFilename
(
void
);
94
100
void
SetInterferenceFilename
(std::string filename);
101
105
std::string
GetInterferenceFilename
(
void
);
106
114
void
ReportCurrentCellRsrpSinr
(uint16_t cellId, uint64_t imsi, uint16_t rnti,
double
rsrp,
double
sinr);
115
123
void
ReportUeSinr
(uint16_t cellId, uint64_t imsi, uint16_t rnti,
double
sinrLinear);
131
void
ReportInterference
(uint16_t cellId,
Ptr<SpectrumValue>
interference);
132
143
static
void
ReportCurrentCellRsrpSinrCallback
(
Ptr<PhyStatsCalculator>
phyStats,
144
std::string path, uint16_t cellId, uint16_t rnti,
145
double
rsrp,
double
sinr);
146
156
static
void
ReportUeSinr
(
Ptr<PhyStatsCalculator>
phyStats, std::string path,
157
uint16_t cellId, uint16_t rnti,
double
sinrLinear);
158
167
static
void
ReportInterference
(
Ptr<PhyStatsCalculator>
phyStats, std::string path,
168
uint16_t cellId,
Ptr<SpectrumValue>
interference);
169
170
171
private
:
172
bool
m_RsrpSinrFirstWrite
;
173
bool
m_UeSinrFirstWrite
;
174
bool
m_InterferenceFirstWrite
;
175
176
std::string
m_RsrpSinrFilename
;
177
std::string
m_ueSinrFilename
;
178
std::string
m_interferenceFilename
;
179
180
};
181
182
}
// namespace ns3
183
184
#endif
/* PHY_STATS_CALCULATOR_H_ */
ns3::LteStatsCalculator
Definition:
lte-stats-calculator.h:30
ns3::Ptr
smart pointer class similar to boost::intrusive_ptr
Definition:
ptr.h:59
ns3::PhyStatsCalculator::GetInterferenceFilename
std::string GetInterferenceFilename(void)
Definition:
phy-stats-calculator.cc:102
ns3::PhyStatsCalculator::m_ueSinrFilename
std::string m_ueSinrFilename
Definition:
phy-stats-calculator.h:177
ns3::PhyStatsCalculator::ReportUeSinr
void ReportUeSinr(uint16_t cellId, uint64_t imsi, uint16_t rnti, double sinrLinear)
Definition:
phy-stats-calculator.cc:149
ns3::PhyStatsCalculator::SetCurrentCellRsrpSinrFilename
void SetCurrentCellRsrpSinrFilename(std::string filename)
Definition:
phy-stats-calculator.cc:72
ns3::PhyStatsCalculator::m_RsrpSinrFirstWrite
bool m_RsrpSinrFirstWrite
Definition:
phy-stats-calculator.h:172
ns3::PhyStatsCalculator::GetTypeId
static TypeId GetTypeId(void)
Definition:
phy-stats-calculator.cc:47
ns3::PhyStatsCalculator::ReportCurrentCellRsrpSinrCallback
static void ReportCurrentCellRsrpSinrCallback(Ptr< PhyStatsCalculator > phyStats, std::string path, uint16_t cellId, uint16_t rnti, double rsrp, double sinr)
Definition:
phy-stats-calculator.cc:222
ns3::PhyStatsCalculator::m_interferenceFilename
std::string m_interferenceFilename
Definition:
phy-stats-calculator.h:178
ns3::PhyStatsCalculator::m_InterferenceFirstWrite
bool m_InterferenceFirstWrite
Definition:
phy-stats-calculator.h:174
ns3::PhyStatsCalculator::SetUeSinrFilename
void SetUeSinrFilename(std::string filename)
Definition:
phy-stats-calculator.cc:84
ns3::PhyStatsCalculator
Definition:
phy-stats-calculator.h:53
ns3::PhyStatsCalculator::~PhyStatsCalculator
virtual ~PhyStatsCalculator()
Definition:
phy-stats-calculator.cc:41
ns3::PhyStatsCalculator::m_RsrpSinrFilename
std::string m_RsrpSinrFilename
Definition:
phy-stats-calculator.h:176
ns3::PhyStatsCalculator::SetInterferenceFilename
void SetInterferenceFilename(std::string filename)
Definition:
phy-stats-calculator.cc:96
ns3::PhyStatsCalculator::GetUeSinrFilename
std::string GetUeSinrFilename(void)
Definition:
phy-stats-calculator.cc:90
ns3::PhyStatsCalculator::ReportInterference
void ReportInterference(uint16_t cellId, Ptr< SpectrumValue > interference)
Definition:
phy-stats-calculator.cc:186
ns3::TypeId
a unique identifier for an interface.
Definition:
type-id.h:49
ns3::PhyStatsCalculator::GetCurrentCellRsrpSinrFilename
std::string GetCurrentCellRsrpSinrFilename(void)
Definition:
phy-stats-calculator.cc:78
ns3::PhyStatsCalculator::PhyStatsCalculator
PhyStatsCalculator()
Definition:
phy-stats-calculator.cc:32
ns3::PhyStatsCalculator::m_UeSinrFirstWrite
bool m_UeSinrFirstWrite
Definition:
phy-stats-calculator.h:173
ns3::PhyStatsCalculator::ReportCurrentCellRsrpSinr
void ReportCurrentCellRsrpSinr(uint16_t cellId, uint64_t imsi, uint16_t rnti, double rsrp, double sinr)
Definition:
phy-stats-calculator.cc:110
src
lte
helper
phy-stats-calculator.h
Generated on Sat Nov 16 2013 12:55:30 for ns-3 by
1.8.5