src/lte/test/lte-simple-helper.h
author Vedran Miletić <rivanvx@gmail.com>
Fri, 19 Apr 2013 22:39:55 +0200
changeset 9703 681f35b212ff
parent 8822 49d3a0979d43
permissions -rw-r--r--
Rename Start and DoStart methods to Initialize and DoInitialize The goal of this patch is to allows us to differentiate the Start/Stop functionality present in some classes from Initialize/Dispose functionality.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
8614
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
     1
/* -*-  Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil; -*- */
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
     2
/*
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
     3
 * Copyright (c) 2012 Centre Tecnologic de Telecomunicacions de Catalunya (CTTC)
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
     4
 *
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
     6
 * it under the terms of the GNU General Public License version 2 as
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
     7
 * published by the Free Software Foundation;
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
     8
 *
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    12
 * GNU General Public License for more details.
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    13
 *
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    14
 * You should have received a copy of the GNU General Public License
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    15
 * along with this program; if not, write to the Free Software
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    16
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    17
 *
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    18
 * Author: Manuel Requena <manuel.requena@cttc.es> (Based on lte-helper.h)
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    19
 */
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    20
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    21
#ifndef LTE_SIMPLE_HELPER_H
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    22
#define LTE_SIMPLE_HELPER_H
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    23
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    24
#include "ns3/net-device-container.h"
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    25
#include "ns3/simple-channel.h"
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    26
#include "ns3/node-container.h"
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    27
#include "ns3/radio-bearer-stats-calculator.h"
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    28
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    29
#include "ns3/lte-pdcp.h"
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    30
#include "ns3/lte-rlc.h"
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    31
#include "ns3/lte-rlc-um.h"
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    32
#include "ns3/lte-rlc-am.h"
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    33
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    34
namespace ns3 {
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    35
8822
49d3a0979d43 fixed Bug 1439 - exclude headers for tests from installation
Nicola Baldo <nbaldo@cttc.es>
parents: 8625
diff changeset
    36
class LteTestRrc;
49d3a0979d43 fixed Bug 1439 - exclude headers for tests from installation
Nicola Baldo <nbaldo@cttc.es>
parents: 8625
diff changeset
    37
class LteTestMac;
8614
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    38
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    39
/**
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    40
 * Creation and configuration of LTE entities
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    41
 *
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    42
 */
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    43
class LteSimpleHelper : public Object
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    44
{
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    45
public:
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    46
  LteSimpleHelper (void);
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    47
  virtual ~LteSimpleHelper (void);
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    48
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    49
  static TypeId GetTypeId (void);
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    50
  virtual void DoDispose (void);
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    51
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    52
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    53
  /**
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    54
   * create a set of eNB devices
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    55
   *
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    56
   * \param c the node container where the devices are to be installed
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    57
   *
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    58
   * \return the NetDeviceContainer with the newly created devices
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    59
   */
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    60
  NetDeviceContainer InstallEnbDevice (NodeContainer c);
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    61
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    62
  /**
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    63
   * create a set of UE devices
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    64
   *
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    65
   * \param c the node container where the devices are to be installed
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    66
   *
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    67
   * \return the NetDeviceContainer with the newly created devices
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    68
   */
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    69
  NetDeviceContainer InstallUeDevice (NodeContainer c);
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    70
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    71
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    72
  /**
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    73
   * Enables logging for all components of the LENA architecture
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    74
   *
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    75
   */
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    76
  void EnableLogComponents (void);
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    77
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    78
  /**
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    79
   * Enables trace sinks for MAC, RLC and PDCP
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    80
   */
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    81
  void EnableTraces (void);
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    82
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    83
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    84
  /**
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    85
   * Enable trace sinks for RLC layer
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    86
   */
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    87
  void EnableRlcTraces (void);
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    88
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    89
  /**
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    90
   * Enable trace sinks for DL RLC layer
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    91
   */
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    92
  void EnableDlRlcTraces (void);
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    93
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    94
  /**
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    95
   * Enable trace sinks for UL RLC layer
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    96
   */
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    97
  void EnableUlRlcTraces (void);
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    98
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
    99
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
   100
  /**
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
   101
   * Enable trace sinks for PDCP layer
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
   102
   */
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
   103
  void EnablePdcpTraces (void);
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
   104
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
   105
  /**
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
   106
   * Enable trace sinks for DL PDCP layer
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
   107
   */
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
   108
  void EnableDlPdcpTraces (void);
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
   109
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
   110
  /**
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
   111
   * Enable trace sinks for UL PDCP layer
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
   112
   */
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
   113
  void EnableUlPdcpTraces (void);
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
   114
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
   115
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
   116
protected:
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
   117
  // inherited from Object
9703
681f35b212ff Rename Start and DoStart methods to Initialize and DoInitialize
Vedran Miletić <rivanvx@gmail.com>
parents: 8822
diff changeset
   118
  virtual void DoInitialize (void);
8614
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
   119
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
   120
private:
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
   121
  Ptr<NetDevice> InstallSingleEnbDevice (Ptr<Node> n);
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
   122
  Ptr<NetDevice> InstallSingleUeDevice (Ptr<Node> n);
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
   123
8625
e8c99462ba2c Fix memory problems in the LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents: 8614
diff changeset
   124
  Ptr<SimpleChannel> m_phyChannel;
8614
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
   125
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
   126
public:
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
   127
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
   128
  Ptr<LteTestRrc> m_enbRrc;
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
   129
  Ptr<LteTestRrc> m_ueRrc;
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
   130
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
   131
  Ptr<LteTestMac> m_enbMac;
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
   132
  Ptr<LteTestMac> m_ueMac;
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
   133
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
   134
private:
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
   135
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
   136
  Ptr<LtePdcp>    m_enbPdcp;
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
   137
  Ptr<LteRlc>     m_enbRlc;
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
   138
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
   139
  Ptr<LtePdcp>    m_uePdcp;
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
   140
  Ptr<LteRlc>     m_ueRlc;
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
   141
8625
e8c99462ba2c Fix memory problems in the LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents: 8614
diff changeset
   142
  ObjectFactory   m_enbDeviceFactory;
e8c99462ba2c Fix memory problems in the LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents: 8614
diff changeset
   143
  ObjectFactory   m_ueDeviceFactory;
8614
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
   144
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
   145
  enum LteRlcEntityType_t {RLC_UM = 1,
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
   146
                           RLC_AM = 2 } m_lteRlcEntityType;
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
   147
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
   148
};
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
   149
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
   150
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
   151
} // namespace ns3
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
   152
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
   153
d4fdda1bf02a Add new LTE simple helper
Manuel Requena <manuel.requena@cttc.es>
parents:
diff changeset
   154
#endif // LTE_SIMPLE_HELPER_H