Пример #1
0
 public DataChannel(DataChannel channel, IList<double[]> rawData, DataConvertorSettings settings)
 {
     PhysicalName = channel.PhysicalName;
     Name = channel.Name;
     RawData = rawData;
     DataConvertionSettings = settings;
     AdditionalData = new List<IList<double[]>>();
 }
Пример #2
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="channel">The data channle to serve as the source for the creation of this data channel.</param>
 /// <param name="rawData">The raw data aquired in the channel</param>
 /// <param name="settings">General settings required for the conversion of the raw data to physical data</param>
 public ComplexDataChannel(DataChannel channel, IList<double[]> rawData, DataConvertorSettings settings)
     : base(channel, rawData, settings) { }