本文整理汇总了C#中Huawei.UNet.NE.Interface.IACell.setParent方法的典型用法代码示例。如果您正苦于以下问题:C# IACell.setParent方法的具体用法?C# IACell.setParent怎么用?C# IACell.setParent使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Huawei.UNet.NE.Interface.IACell
的用法示例。
在下文中一共展示了IACell.setParent方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Init
public void Init()
{
IProject project = new MockProject();
ProjectSingleton.CurrentProject = project;
IGeoProvider Geo = new MockGeoProvider();
ProjectSingleton.CurrentProject.AppContext.RegisterService(Geo);
m_Target = new CalcCellToCellLinkLoss(ProjectSingleton.CurrentProject.AppContext);
m_CellFrom = new MockIACell();
m_CellTo = new MockIACell();
FrequencyBand fromBand = new FrequencyBand();
fromBand.DLFrequency = 900;
m_CellFrom.FreqBand = fromBand;
Transceiver fromParent = new Transceiver();
IASite fromSite = new Site();
fromSite.X = 0;
fromSite.Y = 0;
fromParent.setParent(fromSite);
//List<AntConfig> fromConfigs = new List<AntConfig>();
AntConfig fromConfig1 = new AntConfig();
fromConfig1.OutdoorAntenna = new AntennaEntity();
fromConfig1.AntType = 1;
fromConfig1.Height = 30;
fromConfig1.SectorID = 0;
//fromConfigs.Add(fromConfig1);
fromParent.addAntConfig(fromConfig1);
m_CellFrom.setParent(fromParent, m_CellFrom);
FrequencyBand toBand = new FrequencyBand();
toBand.DLFrequency = 905;
m_CellTo.FreqBand = toBand;
Transceiver toParent = new Transceiver();
IASite toSite = new Site();
toSite.X = 4;
toSite.Y = 3;
toParent.setParent(toSite);
AntConfig toConfig = new AntConfig();
toConfig.OutdoorAntenna = new AntennaEntity();
toConfig.AntType = 1;
toConfig.Height = 25;
toConfig.SectorID = 0;
toParent.addAntConfig(toConfig);
m_CellTo.setParent(toParent, m_CellTo);
}