using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace DTS.Common.Calculations
{
///
/// Filtered Channel Data
/// simple class for holding generic data for calculations
/// in the future I'd like to be able to accept channels with different units and convert them
/// to a common unit, so I add support for that now
///
public class ChannelData
{
///
/// Engineering units of Data
///
public string Units { get; }
///
/// Pre-Filtered EU data
///
public double[] FilteredEU { get; set; }
///
/// Constructs a ChannelData object
///
/// Engineering units of data
public ChannelData(string units)
{
Units = units;
}
}
}