Class that takes care of installing blocks of the buildings in a given area. More...
Public Member Functions | |
FemtocellBlockAllocator (Box area, uint32_t nApartmentsX, uint32_t nFloors) | |
Constructor. | |
void | Create () |
Create function. | |
void | Create (uint32_t n) |
Function that creates building blocks. | |
Private Member Functions | |
bool | OverlapsWithAnyPrevious (Box box) |
Function that checks if the box area is overlapping with some of previously created building blocks. | |
Private Attributes | |
Box | m_area |
Area. | |
uint32_t | m_nApartmentsX |
X apartments. | |
uint32_t | m_nFloors |
number of floors | |
std::list< Box > | m_previousBlocks |
previous bocks | |
Ptr< UniformRandomVariable > | m_xMinVar |
X minimum variance. | |
double | m_xSize |
X size. | |
Ptr< UniformRandomVariable > | m_yMinVar |
Y minimum variance. | |
double | m_ySize |
Y size. | |
Class that takes care of installing blocks of the buildings in a given area.
Buildings are installed in pairs as in dual stripe scenario.
Definition at line 52 of file lena-dual-stripe.cc.
FemtocellBlockAllocator::FemtocellBlockAllocator | ( | Box | area, |
uint32_t | nApartmentsX, | ||
uint32_t | nFloors ) |
Constructor.
area | the total area |
nApartmentsX | the number of apartments in the X direction |
nFloors | the number of floors |
Definition at line 88 of file lena-dual-stripe.cc.
References ns3::CreateObject(), m_xMinVar, m_xSize, m_yMinVar, m_ySize, ns3::Box::xMax, ns3::Box::xMin, ns3::Box::yMax, and ns3::Box::yMin.
void FemtocellBlockAllocator::Create | ( | ) |
Create function.
Definition at line 113 of file lena-dual-stripe.cc.
References ns3::CreateObject(), m_nApartmentsX, m_nFloors, m_previousBlocks, m_xMinVar, m_xSize, m_yMinVar, m_ySize, NS_ASSERT_MSG, NS_LOG_LOGIC, OverlapsWithAnyPrevious(), ns3::Box::xMax, ns3::Box::xMin, ns3::Box::yMax, and ns3::Box::yMin.
Referenced by Create().
void FemtocellBlockAllocator::Create | ( | uint32_t | n | ) |
Function that creates building blocks.
n | the number of blocks to create |
Definition at line 104 of file lena-dual-stripe.cc.
References Create().
|
private |
Function that checks if the box area is overlapping with some of previously created building blocks.
box | the area to check |
Definition at line 148 of file lena-dual-stripe.cc.
References AreOverlapping(), and m_previousBlocks.
Referenced by Create().
|
private |
Area.
Definition at line 78 of file lena-dual-stripe.cc.
|
private |
|
private |
|
private |
previous bocks
Definition at line 81 of file lena-dual-stripe.cc.
Referenced by Create(), and OverlapsWithAnyPrevious().
|
private |
X minimum variance.
Definition at line 84 of file lena-dual-stripe.cc.
Referenced by FemtocellBlockAllocator(), and Create().
|
private |
X size.
Definition at line 82 of file lena-dual-stripe.cc.
Referenced by FemtocellBlockAllocator(), and Create().
|
private |
Y minimum variance.
Definition at line 85 of file lena-dual-stripe.cc.
Referenced by FemtocellBlockAllocator(), and Create().
|
private |
Y size.
Definition at line 83 of file lena-dual-stripe.cc.
Referenced by FemtocellBlockAllocator(), and Create().