A Discrete-Event Network Simulator
API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
phy-stats-calculator.h
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 
54 {
55 public:
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 
133 private:
134  bool m_RsrpSinrFirstWrite;
135  bool m_UeSinrFirstWrite;
136  bool m_InterferenceFirstWrite;
137 
138  std::string m_RsrpSinrFilename;
139  std::string m_ueSinrFilename;
140  std::string m_interferenceFilename;
141 
142 };
143 
144 } // namespace ns3
145 
146 #endif /* PHY_STATS_CALCULATOR_H_ */
smart pointer class similar to boost::intrusive_ptr
Definition: ptr.h:59
std::string GetInterferenceFilename(void)
void ReportUeSinr(uint16_t cellId, uint64_t imsi, uint16_t rnti, double sinrLinear)
void SetCurrentCellRsrpSinrFilename(std::string filename)
static TypeId GetTypeId(void)
void SetUeSinrFilename(std::string filename)
void SetInterferenceFilename(std::string filename)
std::string GetUeSinrFilename(void)
void ReportInterference(uint16_t cellId, Ptr< SpectrumValue > interference)
a unique identifier for an interface.
Definition: type-id.h:44
std::string GetCurrentCellRsrpSinrFilename(void)
void ReportCurrentCellRsrpSinr(uint16_t cellId, uint64_t imsi, uint16_t rnti, double rsrp, double sinr)