This file is indexed.

/usr/include/ns3.27/ns3/cc-helper.h is in libns3-dev 3.27+dfsg-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
/* -*-  Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil; -*- */
/*
 * Copyright (c) 2015 Danilo Abrignani
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation;
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 *
 * Author: Danilo Abrignani <danilo.abrignani@unibo.it> 
 */

#ifndef CC_HELPER_H
#define CC_HELPER_H

#include <ns3/config.h>
#include <ns3/simulator.h>
#include <ns3/names.h>
#include <ns3/net-device.h>
#include <ns3/net-device-container.h>
#include <ns3/node.h>
#include <ns3/node-container.h>
#include <ns3/component-carrier.h>
#include <map>

namespace ns3 {


/**
 * \ingroup lte
 *
 * Creation and configuration of Component Carrier entities. One CcHelper instance is
 * typically enough for an LTE simulation. To create it:
 *
 *     Ptr<CcHelper> ccHelper = CreateObject<CcHelper> ();
 *
 * The general responsibility of the helper is to create various Component Carrier objects
 * and arrange them together to set the eNodeB. The overall
 * arrangement would look like the following:
 * - Ul Bandwidths
 * - Dl Bandwidths
 * - Ul Earfcn
 * - Dl Earfcn
 *
 *
 * This helper it is also used within the LteHelper in order to maintain backwards compatibility
 * with previous user simulation script. 
 */
class CcHelper : public Object
{
public:
  CcHelper (void);
  virtual ~CcHelper (void);

  /**
   *  Register this type.
   *  \return The object TypeId.
   */
  static TypeId GetTypeId (void);
  virtual void DoDispose (void);

  /**
  * Create single CC.
  *
  * \param ulBandwidth the UL bandwidth
  * \param dlBandwidth the DL bandwidth
  * \param ulEarfcn the UL EARFCN
  * \param dlEarfcn the DL EARFCN
  * \param isPrimary ture if primary
  * \returns the component carrier
  */
  ComponentCarrier DoCreateSingleCc (uint16_t ulBandwidth, uint16_t dlBandwidth, uint32_t ulEarfcn, uint32_t dlEarfcn, bool isPrimary);

  /**
  * Set an attribute for the Component Carrier to be created.
  *
  * \param n the name of the attribute.
  * \param v the value of the attribute
  */
  void SetCcAttribute (std::string n, const AttributeValue &v);

  /**
  * EquallySpacedCcs() create a valid std::map< uint8_t, Ptr<ComponentCarrier> >
  * The Primary Component Carrier it is at the position 0 in the map
  * The number of Component Carrier created depend on m_noOfCcs
  * Currently it is limited to maximum 2 ComponentCarrier
  * Since, only a LteEnbPhy object is available just symmetric Carrier Aggregation scheme
  * are allowed, i.e. 2 Uplink Component Carrier and 2 Downlink Component Carrier
  * Using this method, each CC will have the same characteristics (bandwidth)
  * while they are spaced by exactly the bandwidth. Hence, using this method,
  * you will create a intra-channel Carrier Aggregation scheme.
  *
  * \returns std::map< uint8_t, Ptr<ComponentCarrier> >
  */

  std::map< uint8_t, ComponentCarrier > EquallySpacedCcs ();

  /**
  * Set number of CCs.
  *
  * \param nCc the number of CCs
  */
  void SetNumberOfComponentCarriers (uint16_t nCc);
  /**
  * Set UL EARFCN.
  *
  * \param ulEarfcn the UL EARFCN
  */
  void SetUlEarfcn (uint32_t ulEarfcn);
  /**
  * Set DL EARFCN.
  *
  * \param dlEarfcn the DL EARFCN
  */
  void SetDlEarfcn (uint32_t dlEarfcn);
  /**
  * Set DL bandwidth.
  *
  * \param dlBandwidth the DL bandwidth
  */
  void SetDlBandwidth (uint16_t dlBandwidth);
  /**
  * Set UL bandwidth.
  *
  * \param ulBandwidth the UL bandwidth
  */
  void SetUlBandwidth (uint16_t ulBandwidth);
  /**
  * Get number of component carriers.
  *
  * \returns the number of component carriers
  */
  uint16_t GetNumberOfComponentCarriers ();
  /**
  * Get UL EARFCN.
  *
  * \returns the UL EARFCN
  */
  uint32_t GetUlEarfcn ();
  /**
  * Get DL EARFCN.
  *
  * \returns the DL EARFCN
  */
  uint32_t GetDlEarfcn ();
  /**
  * Get DL bandwidth.
  *
  * \returns the DL bandwidth
  */
  uint16_t GetDlBandwidth ();
  /**
  * Get UL bandwidth.
  *
  * \returns the UL bandwidth
  */
  uint16_t GetUlBandwidth ();

protected:
  // inherited from Object
  virtual void DoInitialize (void);

private:
  /**
   * Create a single component carrier.
   *
   * \param ulBandwidth uplink bandwidth for the current CC
   * \param dlBandwidth downlink bandwidth for the current CC
   * \param ulEarfcn uplink EARFCN - not control on the validity at this point
   * \param dlEarfcn downlink EARFCN - not control on the validity at this point	
   * \param isPrimary identify if this is the Primary Component Carrier (PCC) - only one PCC is allowed 
   * \return the component carrier
   */
  ComponentCarrier CreateSingleCc (uint16_t ulBandwidth, uint16_t dlBandwidth, uint32_t ulEarfcn, uint32_t dlEarfcn, bool isPrimary);

  /// Factory for each Carrier Component.
  ObjectFactory m_ccFactory;

  uint32_t m_ulEarfcn; ///< Uplink EARFCN
  uint32_t m_dlEarfcn; ///< Downlink EARFCN
  uint16_t m_dlBandwidth; ///< Downlink Bandwidth
  uint16_t m_ulBandwidth; ///< Uplink Bandwidth
  uint16_t m_numberOfComponentCarriers; ///< Number of component carriers


}; // end of `class LteHelper`


} // namespace ns3



#endif // LTE_HELPER_H