68 lines
2.0 KiB
C#
68 lines
2.0 KiB
C#
///
|
|
/// Copyright (c) 2015-2021 Sensus Metering Systems
|
|
///
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Xml.Serialization;
|
|
using TBF.Rig.Generic;
|
|
|
|
namespace TBF.Rig.Elde.PressureMeterInternal
|
|
{
|
|
public class PressureMeterCfg : ComponentCfgBase, IChildComponentCfg, TBF.Rig.GenericDevices.ICalibInfoCfg
|
|
{
|
|
public static XmlSerializer Serializer = XmlSerializer.FromTypes(new[] { typeof(PressureMeterCfg) })[0];
|
|
public override XmlSerializer GetSerializer() { return Serializer; }
|
|
|
|
public IComponentCfgCtrl GetControl(IList<Config.Entities.Component> cmpntEntities) { return new PressureMeterCfgCtrl(); }
|
|
|
|
///
|
|
/// Serialized parameters
|
|
///
|
|
public int Idx0; /// 0..7
|
|
public int CoefsIdx0; /// 0..7
|
|
public float A1;
|
|
public float A2;
|
|
public float A3;
|
|
public float A4;
|
|
public float A5;
|
|
|
|
/// Calibration info serialized parameters displayed in Metrology tab page
|
|
public string CalibCertificateNr { get; set; }
|
|
public DateTime CalibDate { get; set; }
|
|
public DateTime CalibValidDate { get; set; }
|
|
|
|
|
|
/// Private parameterless constructor invoked by all other (public) constructors
|
|
PressureMeterCfg() { }
|
|
|
|
public PressureMeterCfg(IComponentFactory factory)
|
|
: this()
|
|
{
|
|
Factory = factory;
|
|
Name = "Pr";
|
|
ParentName = "CB";
|
|
Idx0 = 0;
|
|
CoefsIdx0 = 0;
|
|
A1 = 0;
|
|
A2 = 0;
|
|
A3 = 0;
|
|
A4 = 0;
|
|
A5 = 0;
|
|
|
|
CalibCertificateNr = string.Empty;
|
|
CalibDate = TBF.UI.Constants.MinDate;
|
|
CalibValidDate = TBF.UI.Constants.MaxDate;
|
|
}
|
|
|
|
public string ToString(int i)
|
|
{
|
|
return string.Format("Name={0}, Parent={1}, Idx0={2}, CoefsIdx0={3}, A1={4}, A2={5}, A3={6}, A4={7}, A5={8}",
|
|
Name,
|
|
(string.IsNullOrEmpty(ParentName) ? "-" : ParentName),
|
|
Idx0, CoefsIdx0,
|
|
A1, A2, A3, A4, A5);
|
|
}
|
|
}
|
|
}
|