21 lines
771 B
Plaintext
21 lines
771 B
Plaintext
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
|
|
}
|
|
} |