diff --git a/src/lte/model/lte-ue-phy.h b/src/lte/model/lte-ue-phy.h index 00b233234..cf8e04bd3 100644 --- a/src/lte/model/lte-ue-phy.h +++ b/src/lte/model/lte-ue-phy.h @@ -805,8 +805,8 @@ private: uint16_t m_numOfFrames; ///< count the number of frames for which the downlink radio link quality is estimated double m_sinrDbFrame; ///< the average SINR per radio frame SpectrumValue m_ctrlSinrForRlf; ///< the CTRL SINR used for RLF detection - uint64_t m_imsi; - bool m_enableRlfDetection; + uint64_t m_imsi; ///< the IMSI of the UE + bool m_enableRlfDetection; ///< Flag to enable/disable RLF detection }; // end of `class LteUePhy` diff --git a/src/lte/model/lte-ue-rrc.h b/src/lte/model/lte-ue-rrc.h index 2b9fb8e8a..eb1de9e8f 100644 --- a/src/lte/model/lte-ue-rrc.h +++ b/src/lte/model/lte-ue-rrc.h @@ -261,7 +261,7 @@ public: /** * \brief Store the previous cell id * - * \param The cell id of the previous cell the UE was attached to + * \param cellId The cell id of the previous cell the UE was attached to */ void StorePreviousCellId (uint16_t cellId); diff --git a/src/lte/test/lte-test-radio-link-failure.h b/src/lte/test/lte-test-radio-link-failure.h index b09bf263a..25b72454c 100644 --- a/src/lte/test/lte-test-radio-link-failure.h +++ b/src/lte/test/lte-test-radio-link-failure.h @@ -61,13 +61,15 @@ class LteRadioLinkFailureTestCase : public TestCase public: /** * \brief Creates an instance of the radio link failure test case. - * \param name name of this test + * * \param numEnbs number of eNodeBs * \param numUes number of UEs + * \param simTime the simulation time * \param isIdealRrc if true, simulation uses Ideal RRC protocol, otherwise * simulation uses Real RRC protocol * \param uePositionList Position of the UEs * \param enbPositionList Position of the eNodeBs + * \param ueJumpAwayPosition Vector holding the UE jump away coordinates * \param checkConnectedList the time at which UEs should have an active RRC connection */ LteRadioLinkFailureTestCase (uint32_t numEnbs, uint32_t numUes, Time simTime, bool isIdealRrc,