33 lines
1.4 KiB
C#
33 lines
1.4 KiB
C#
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; }
|
|
}
|
|
}
|