using DTS.Common.Base;
namespace DTS.Common.DataModel.Common
{
public class TestObjectHelper
{
#region constants and enums
///
/// 8747 - this is the break point for TDC for software filters for TOM channels
/// greater than 8000 sps it will use CFC 1000, 8k and below it uses 1/5 of SPS
/// in datapro for now we only handle >8k and don't worry about <=8k
///
public const double TDC_LEGACY_TOM_CUTOFF_SPS = 8000;
///
/// this is the default filter in TDC for TOM channels recorded at > 8k SPS
/// this is CFC1000
///
public const double TDC_LEGACY_TOM_HIGH_FILTER = 1650D;
#endregion
}
}