New Columns for SPC
AssemblyVersion
This commit is contained in:
@ -45,6 +45,10 @@ public class Description : IDescription, Shared.Properties.IDescription
|
||||
public string RVThickness { get; set; }
|
||||
public string StdDev { get; set; }
|
||||
public string Thickness { get; set; }
|
||||
//
|
||||
public string CriticalPointsAverage { get; set; }
|
||||
public string ThicknessSmile { get; set; }
|
||||
public string CriticalPointsStdDev { get; set; }
|
||||
|
||||
string IDescription.GetEventDescription() => "File Has been read and parsed";
|
||||
|
||||
@ -106,7 +110,10 @@ public class Description : IDescription, Shared.Properties.IDescription
|
||||
nameof(MeanThickness),
|
||||
nameof(RVThickness),
|
||||
nameof(StdDev),
|
||||
nameof(Thickness)
|
||||
nameof(Thickness),
|
||||
nameof(CriticalPointsAverage),
|
||||
nameof(ThicknessSmile),
|
||||
nameof(CriticalPointsStdDev),
|
||||
};
|
||||
return results;
|
||||
}
|
||||
@ -209,7 +216,11 @@ public class Description : IDescription, Shared.Properties.IDescription
|
||||
MeanThickness = processData.MeanThickness,
|
||||
RVThickness = processData.RVThickness,
|
||||
StdDev = processData.StdDev,
|
||||
Thickness = detail.Thickness
|
||||
Thickness = detail.Thickness,
|
||||
//
|
||||
CriticalPointsAverage = string.Empty,
|
||||
ThicknessSmile = string.Empty,
|
||||
CriticalPointsStdDev = string.Empty,
|
||||
};
|
||||
results.Add(description);
|
||||
}
|
||||
@ -261,7 +272,11 @@ public class Description : IDescription, Shared.Properties.IDescription
|
||||
MeanThickness = nameof(MeanThickness),
|
||||
RVThickness = nameof(RVThickness),
|
||||
StdDev = nameof(StdDev),
|
||||
Thickness = nameof(Thickness)
|
||||
Thickness = nameof(Thickness),
|
||||
//
|
||||
CriticalPointsAverage = nameof(CriticalPointsAverage),
|
||||
ThicknessSmile = nameof(ThicknessSmile),
|
||||
CriticalPointsStdDev = nameof(CriticalPointsStdDev),
|
||||
};
|
||||
return result;
|
||||
}
|
||||
|
Reference in New Issue
Block a user