Exemple #1
0
 public GroupPropertiesForm(PredictionGroupsManager pgm, OtherSubSysInterface subSysInterface)
 {
     this.m_SubSysInterface = subSysInterface;
     this.InitializeComponent();
     this.m_PredictionGroupsManager = pgm;
     this.Init();
 }
 public PredictionStatisticsManager(TreeNode treenode, PredictionGroupsManager pgm, ZedGraphControl zgc, ListBox lb, OtherSubSysInterface subSysInterface)
 {
     this.m_ActualMaxValue = -32768f;
     this.m_ActualMinValue = 0x7fffffff;
     this.m_SubSysInterface = subSysInterface;
     this.m_TreeNode = treenode;
     this.m_PredictionGroupManager = pgm;
     this.m_ZedGraph = zgc;
     this.m_ListBox = lb;
     this.Init();
 }
Exemple #3
0
 public StudyPropertiesForm(PredictionGroupsManager pgm, OtherSubSysInterface subSysInterface)
 {
     this.m_SubSysInterface = subSysInterface;
     this.InitializeComponent();
     this.m_PredictionGroupsManager = pgm;
     this.m_PredictionStudyManager = new PredictionStudyManager(pgm, this.dgvLegend, this.cmbDisplayType, this.cmbField, this.m_SubSysInterface);
     this.m_DefaultConfig = new DefaultLegendConfig();
     this.CheckAll.CheckedChanged -= new EventHandler(this.CheckAll_CheckedChanged);
     this.Init();
     this.CheckAll.CheckedChanged += new EventHandler(this.CheckAll_CheckedChanged);
 }
Exemple #4
0
 public CDFCompareForm(PredictionGroupsManager pgm, OtherSubSysInterface SubSysInterface)
 {
     this.InitializeComponent();
     this.m_PredictionGroupManager = pgm;
     this.m_SubSysInterface = SubSysInterface;
     this.cboStudy.SelectedIndex = 0;
     this.Init();
     this.m_PredictionStatisticsManager = new PredictionStatisticsManager((string) this.cboStudy.SelectedItem, this.m_pglist, this.m_IsShow, this.m_SubSysInterface, this.zgc);
     this.m_PredictionStatisticsManager.PredictionGroupManager = pgm;
     this.m_PredictionStatisticsManager.LineColor = this.m_Color;
     this.ShowCDF();
     this.cboStudy.SelectedIndexChanged += new EventHandler(this.cboStudy_SelectedIndexChanged);
     this.dgvGroup.CellContentClick += new DataGridViewCellEventHandler(this.dgvGroup_CellContentClick);
 }
 public PredictionExportDataForm(PredictionGroupsManager pgm, OtherSubSysInterface subSysInterface, IApplicationContext appContext)
 {
     this.m_AppContext = appContext;
     this.m_SubSysInterface = subSysInterface;
     this.m_PredictionGroupsManager = pgm;
     this.InitializeComponent();
     this.GetClutter();
     this.ExportDataDisplay();
     this.dgvExpoertData.AllowUserToAddRows = false;
     this.dgvExpoertData.AllowUserToDeleteRows = false;
     this.dgvExpoertData.ServiceCustom.ServiceCustomDic[DgvServiceEnum.RecordProperties] = false;
     this.dgvExpoertData.ServiceCustom.ServiceCustomDic[DgvServiceEnum.Copy] = false;
     this.dgvExpoertData.ServiceCustom.ServiceCustomDic[DgvServiceEnum.Paste] = false;
 }
Exemple #6
0
 public CalculateTargetValue(PredictionGroupsManager tempManger, OtherSubSysInterface subSysInterface)
 {
     this.groupManger = tempManger;
     this.m_SubSysInterface = subSysInterface;
 }
 public PredictionResultManager(PredictionGroupsManager pgm, OtherSubSysInterface subSysInterface)
 {
     this.m_PredictionGroupsManager = pgm;
     this.m_SubSysInterface = subSysInterface;
     this.alph = 0;
 }
 public PredictionExportByRSRPForm(TreeNode selectNode, OtherSubSysInterface otherSubSysInterface, PredictionGroupsManager predictionGroupsManager, bool isGroup)
 {
     this.InitializeComponent();
     this.init(selectNode, otherSubSysInterface, predictionGroupsManager, isGroup);
     this.ExportOneGroupDataAsReport();
 }
 private void init(TreeNode selectNode, OtherSubSysInterface otherSubSysInterface, PredictionGroupsManager predictionGroupsManager, bool isGroup)
 {
     this.m_selectNode = selectNode;
     this.m_isGroup = isGroup;
     this.m_SubSysInterface = otherSubSysInterface;
     this.m_PredictionGroupsManager = predictionGroupsManager;
     this.m_letcelllist = this.m_SubSysInterface.INet.TranceiverList;
     this.geoProvider = this.m_SubSysInterface.IGis.GeoProvider;
     if (this.m_isGroup)
     {
         this.m_PredictionGroup = this.m_PredictionGroupsManager.Find(this.m_selectNode.Text);
     }
     else
     {
         this.m_PredictionGroup = this.m_PredictionGroupsManager.Find(this.m_selectNode.Parent.Text);
     }
     this.m_SelectedMaxMinValue = new List<MaxMinValue>();
     this.m_MaxMinList = new List<MaxMinValue>();
     this.m_study = this.GetPredictionStudy();
     if (this.m_study != null)
     {
         int displayTypeIndex = this.m_study.StudyLegend.DisplayTypeIndex;
         this.m_MaxMinList.AddRange(this.m_study.StudyLegend.ValueIntervals[this.m_study.StudyLegend.FieldItem[displayTypeIndex]].ValueIntervalsField.Keys);
     }
     else
     {
         MaxMinValue item = new MaxMinValue();
         item.min = 0f;
         item.max = 32767f;
         this.m_MaxMinList.Add(item);
         MaxMinValue value3 = new MaxMinValue();
         value3.min = -5000f;
         value3.max = 0f;
         this.m_MaxMinList.Add(value3);
         MaxMinValue value4 = new MaxMinValue();
         value4.min = -8000f;
         value4.max = -5000f;
         this.m_MaxMinList.Add(value4);
         MaxMinValue value5 = new MaxMinValue();
         value5.min = -9000f;
         value5.max = -8000f;
         this.m_MaxMinList.Add(value5);
         MaxMinValue value6 = new MaxMinValue();
         value6.min = -10000f;
         value6.max = -9000f;
         this.m_MaxMinList.Add(value6);
         MaxMinValue value7 = new MaxMinValue();
         value7.min = -10500f;
         value7.max = -10000f;
         this.m_MaxMinList.Add(value7);
         MaxMinValue value8 = new MaxMinValue();
         value8.min = -11000f;
         value8.max = -10500f;
         this.m_MaxMinList.Add(value8);
         MaxMinValue value9 = new MaxMinValue();
         value9.min = -12000f;
         value9.max = -11000f;
         this.m_MaxMinList.Add(value9);
         MaxMinValue value10 = new MaxMinValue();
         value10.min = -32768f;
         value10.max = -12000f;
         this.m_MaxMinList.Add(value10);
     }
 }