init
This commit is contained in:
32
DataPRO/IService/Classes/Arm/ArmCheckResults.cs
Normal file
32
DataPRO/IService/Classes/Arm/ArmCheckResults.cs
Normal file
@@ -0,0 +1,32 @@
|
||||
using DTS.Common.Interface.DASFactory.Diagnostics;
|
||||
using System.Collections.Generic;
|
||||
using DTS.Common;
|
||||
|
||||
namespace DTS.DASLib.Service
|
||||
{
|
||||
public class ArmCheckResults : IArmCheckResults
|
||||
{
|
||||
/// <summary>
|
||||
/// sensor EIDs, key is index of channel, value is an array of ids
|
||||
/// </summary>
|
||||
public Dictionary<int, string[]> SensorIds { get; set; }
|
||||
public Dictionary<int, double> SquibResistances { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// some DAS (TDAS Pro rack) can have multiple battery voltages for modules ...
|
||||
/// </summary>
|
||||
public double?[] BatteryVoltage { get; set; }
|
||||
public double? InputVoltage { get; set; }
|
||||
public bool? StartLineShorted { get; set; }
|
||||
public bool? EventLineShorted { get; set; }
|
||||
public short[] TiltSensorDataPre { get; set; }
|
||||
public double[] TiltDegrees { get; set; }
|
||||
public Dictionary<byte, short[]> IndexedTiltSensorDataPre { get; set; } = new Dictionary<byte, short[]>();
|
||||
public Dictionary<byte, double[]> IndexedTiltDegrees { get; set; } = new Dictionary<byte, double[]>();
|
||||
public float[] TemperaturesPre { get; set; }
|
||||
public double[] Gains { get; set; }
|
||||
public double[] ZeroData { get; set; }
|
||||
public IDictionary<InputClockSource, bool> InputClockLocks { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user