Files
DP44/Common/DTS.Common.Serialization/TDAS/TDAS.File.IChannelHeader.cs

115 lines
2.1 KiB
C#
Raw Normal View History

2026-04-17 14:55:32 -04:00
/*
* DTS.Serialization.TDAS.File.IChannelHeader.cs
*
* Copyright © 2009
* Diversified Technical Systems, Inc.
* All Rights Reserved
*/
using System;
namespace DTS.Serialization.TDAS
{
public interface IChannelHeader
{
/// <summary>
/// Get/set acquisition rate value.
/// </summary>
Double AcquisitionRate
{
get;
set;
}
/// <summary>
/// Get/set number of pre-T0 data points.
/// </summary>
int NumberOfPreT0DataPoints
{
get;
set;
}
/// <summary>
/// Get/set number of post-T0 data points.
/// </summary>
int NumberOfPostT0DataPoints
{
get;
set;
}
/// <summary>
/// Get/set z.
/// </summary>
int PreZeroLevelInCnts
{
get;
set;
}
/// <summary>
/// Get/set z.
/// </summary>
int PreCalLevelInCnts
{
get;
set;
}
/// <summary>
/// Get/set z.
/// </summary>
Double SignalToNoiseRatioInDb
{
get;
set;
}
/// <summary>
/// Get/set z.
/// </summary>
int PostZeroLevelInCnts
{
get;
set;
}
/// <summary>
/// Get/set z.
/// </summary>
int PostCalLevelInCnts
{
get;
set;
}
/// <summary>
/// Get/set z.
/// </summary>
int DataZeroLevelInCnts
{
get;
set;
}
/// <summary>
/// Get/set scale factor MV.
/// </summary>
Double ScaleFactorMVPerCnt
{
get;
set;
}
/// <summary>
/// Get/set z.
/// </summary>
Double ScaleFactorEUPerCnt
{
get;
set;
}
}
}