29 lines
1.2 KiB
Plaintext
29 lines
1.2 KiB
Plaintext
using DTS.Common.DAS.Concepts;
|
|
using DTS.Common.Enums.DASFactory;
|
|
using System.Collections.Generic;
|
|
|
|
namespace DTS.DASLib.Service
|
|
{
|
|
/// <summary>
|
|
/// This is identical to TDASServiceSetupInfo except that the SamplesPerSecond and HardwareFilterRateHz
|
|
/// are Dictionaries so that they can differ based on the DAS being used.
|
|
/// </summary>
|
|
public class TDASServiceSetupInfoLookup
|
|
{
|
|
public string SetupDescription { get; set; }
|
|
public Dictionary<string, double> SamplesPerSecondLookup { get; set; }
|
|
public Dictionary<string, float> HardwareFilterRateHzLookup { get; set; }
|
|
public DFConstantsAndEnums.RecordingMode RecordingMode { get; set; }
|
|
public bool? CheckoutMode { get; set; }
|
|
|
|
public TDASServiceSetupInfoLookup(string setupDescription, Dictionary<string, double> sampleRateLookup, Dictionary<string, float> aafLookup, DFConstantsAndEnums.RecordingMode recordingMode, bool? checkoutMode)
|
|
{
|
|
SetupDescription = setupDescription;
|
|
SamplesPerSecondLookup = sampleRateLookup;
|
|
HardwareFilterRateHzLookup = aafLookup;
|
|
RecordingMode = recordingMode;
|
|
CheckoutMode = checkoutMode;
|
|
}
|
|
}
|
|
}
|