mirror of https://github.com/pvnis/srsRAN_4G.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
393 B
C++
35 lines
393 B
C++
|
|
#ifndef ENB_PHY_METRICS_H
|
|
#define ENB_PHY_METRICS_H
|
|
|
|
|
|
namespace srsenb {
|
|
|
|
// PHY metrics per user
|
|
|
|
struct ul_metrics_t
|
|
{
|
|
float n;
|
|
float sinr;
|
|
float rssi;
|
|
float turbo_iters;
|
|
float mcs;
|
|
int n_samples;
|
|
};
|
|
|
|
struct dl_metrics_t
|
|
{
|
|
float mcs;
|
|
int n_samples;
|
|
};
|
|
|
|
struct phy_metrics_t
|
|
{
|
|
dl_metrics_t dl;
|
|
ul_metrics_t ul;
|
|
};
|
|
|
|
} // namespace srsenb
|
|
|
|
#endif // ENB_PHY_METRICS_H
|