Switch to csv to work with AUC EAF FileReader

This commit is contained in:
2025-01-17 16:43:34 -07:00
parent 119e2bd535
commit 7b993aaa94
3 changed files with 16 additions and 29 deletions

View File

@ -9,6 +9,7 @@ internal class Row
public Row(Run run, int i)
{
Index = i;
Operator = run.Header.Operator;
StartVoltage = run.Header.StartVoltage;
Wafer = run.Header.Wafer;
@ -117,6 +118,8 @@ internal class Row
TopY = run.Points[i].TopY;
}
public int Index { get; }
//
public string Operator { get; }
public string StartVoltage { get; }
public string Wafer { get; }