init
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
using DTS.Common.Converters;
|
||||
using System.ComponentModel;
|
||||
|
||||
namespace DTS.Common.Enums.Viewer.Reports
|
||||
{
|
||||
[TypeConverter(typeof(EnumDescriptionTypeConverter))]
|
||||
public enum PassFilterType
|
||||
{
|
||||
[Description("Bessel")]
|
||||
Bessel,
|
||||
[Description("Butterworth")]
|
||||
Butterworth,
|
||||
[Description("Chebyshev")]
|
||||
Chebyshev,
|
||||
//[Description("Critical Damping")] // REMOVE THIS HACK / uncomment when implemented in exocortex
|
||||
//CriticalDamping,
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
using DTS.Common.Converters;
|
||||
using System.ComponentModel;
|
||||
|
||||
namespace DTS.Common.Enums.Viewer.Reports
|
||||
{
|
||||
[TypeConverter(typeof(EnumDescriptionTypeConverter))]
|
||||
public enum WindowAveragingType
|
||||
{
|
||||
[Description("Averaging")]
|
||||
Averaging,
|
||||
[Description("Peak Hold MAX")]
|
||||
PeakHoldMax,
|
||||
[Description("Peak Hold MIN")]
|
||||
PeakHoldMin,
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,22 @@
|
||||
using DTS.Common.Converters;
|
||||
using System.ComponentModel;
|
||||
|
||||
namespace DTS.Common.Enums.Viewer.Reports
|
||||
{
|
||||
[TypeConverter(typeof(EnumDescriptionTypeConverter))]
|
||||
public enum WindowType
|
||||
{
|
||||
[Description("Rectangle")]
|
||||
Rectangle,
|
||||
[Description("Hamming")]
|
||||
Hamming,
|
||||
[Description("Hanning")]
|
||||
Hanning,
|
||||
[Description("Blackman")]
|
||||
Blackman,
|
||||
[Description("Blackman-Harris")]
|
||||
BlackmanHarris,
|
||||
[Description("Flat Top")]
|
||||
FlatTop
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
using DTS.Common.Converters;
|
||||
using System.ComponentModel;
|
||||
|
||||
namespace DTS.Common.Enums.Viewer.Reports
|
||||
{
|
||||
[TypeConverter(typeof(EnumDescriptionTypeConverter))]
|
||||
public enum WindowWidth
|
||||
{
|
||||
[Description("512")]
|
||||
FiveTwelve = 512,
|
||||
[Description("1024")]
|
||||
TenTwentyFour = 1024,
|
||||
[Description("2048")]
|
||||
TwentyFortyEight = 2048,
|
||||
[Description("4096")]
|
||||
FortyNinetySix = 4096,
|
||||
[Description("8192")]
|
||||
EightyOneNinetyTwo = 8192,
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user