Files
DP44/Common/DTS.Common.DataModel/.svn/pristine/61/6162ed9ebf573218acaa0af8293e3e3399c4e888.svn-base

21 lines
771 B
Plaintext
Raw Normal View History

2026-04-17 14:55:32 -04:00
using DTS.Common.Base;
namespace DTS.Common.DataModel.Common
{
public class TestObjectHelper
{
#region constants and enums
/// <summary>
/// 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
/// </summary>
public const double TDC_LEGACY_TOM_CUTOFF_SPS = 8000;
/// <summary>
/// this is the default filter in TDC for TOM channels recorded at > 8k SPS
/// this is CFC1000
/// </summary>
public const double TDC_LEGACY_TOM_HIGH_FILTER = 1650D;
#endregion
}
}