Beispiel #1
0
 /// <summary>
 /// 从路损文件中读取backhaul路损数据
 /// </summary>
 /// <param name="cell"></param>
 /// <param name="resolution"></param>
 private void GetBackhaulPathLossDataPairs(Transceiver cell, float resolution)
 {
     if (m_PathLossCellData == null)
     {
         m_PathLossCellData = new CellPLDataParam(cell);
     }
     List<TransceiverPathLossMatrix> bh_list = m_FileAccesser.LoadComposedBackhualPathLossFile(cell.ID) as List<TransceiverPathLossMatrix>;
     if (bh_list != null)
     {
         m_PathLossCellData.TransBackhaulPathLossMatrixList = bh_list;
     }
 }
Beispiel #2
0
 public void ClearBuffer()
 {
     this.m_PathLossCellID = -32768;
     this.m_PathLossCellData = null;
 }
Beispiel #3
0
 /// <summary>
 /// 从路损文件中取出路损矩阵
 /// </summary>
 /// <param name="cell"></param>
 /// <param name="resolution"></param>
 private void GetPathLossDataPairs(Transceiver cell, float resolution)
 {
     this.m_PathLossCellData = new CellPLDataParam(cell);
     List<TransceiverPathLossMatrix> list = this.m_FileAccesser.LoadComposedPathLossFile(cell.ID) as List<TransceiverPathLossMatrix>;
     if (list != null)
     {
         this.m_PathLossCellData.TransceiverPathLossMatrixList = list;
     }
 }