Save CSV like PDSF ready to test

This commit is contained in:
2025-01-14 09:13:43 -07:00
parent ccedba10b5
commit e37d9757ec
9 changed files with 396 additions and 106 deletions

View File

@ -13,7 +13,7 @@ public class Header
public Header(string date,
string recipe,
string id,
WaferSummary[] waferSummary,
ReadOnlyCollection<WaferSummary> waferSummary,
string lPDCountMin,
string lPDCM2Min,
string areaCountMin,
@ -96,7 +96,7 @@ public class Header
public string Date { get; }
public string Recipe { get; }
public string Id { get; }
public WaferSummary[] WaferSummary { get; }
public ReadOnlyCollection<WaferSummary> WaferSummary { get; }
public string LPDCountMin { get; }
public string LPDCM2Min { get; }
public string AreaCountMin { get; }
@ -273,7 +273,7 @@ public class Header
result = new(date: date,
recipe: recipe,
id: id,
waferSummary: collection.ToArray(),
waferSummary: collection.AsReadOnly(),
lPDCountMin: toEol1[0].Trim(),
lPDCM2Min: toEol1[1].Trim(),
areaCountMin: toEol1[2].Trim(),