using CommonLib.IO; namespace PG_SERVER2.PGHOST { public class GammaIniFile :IniFile { public class _CELL_INFO { public string CELL_JUDGE { get; set; } = "S"; public string CELL_GRADE { get; set; } = ""; public string GAMMA_JUDGE { get; set; } = "A"; public string GAMMA_GRADE { get; set; } = "A"; public string AOI_JUDGE { get; set; } = ""; public string AOI_GRADE { get; set; } = ""; public string MURA_JUDGE { get; set; } = "S"; public string MURA_GRADE { get; set; } = ""; public string TP_JUDGE { get; set; } = " "; public string TP_GRADE { get; set; } = " "; public string MANUAL_JUDGE { get; set; } = " "; public string MANUAL_GRADE { get; set; } = " "; public string APP_JUDGE { get; set; } = ""; public string APP_GRADE { get; set; } = ""; } public class _PATTERN_INFO { public string W_X1 { get; set; } = "0.2929"; public string W_X2 { get; set; } = "0.2737"; public string W_Y1 { get; set; } = "0.3187"; public string W_Y2 { get; set; } = "0.3252"; public string W_L1 { get; set; } = "1303.19"; public string W_L2 { get; set; } = "600.20"; public string W_VR { get; set; } = "3.08"; public string W_VG { get; set; } = "3.14"; public string W_VB { get; set; } = "2.74"; public string W_I { get; set; } = "277000.0"; public string R_X1 { get; set; } = "0.6873"; public string R_X2 { get; set; } = "0.6651"; public string R_Y1 { get; set; } = "0.3122"; public string R_Y2 { get; set; } = "0.3329"; public string R_L1 { get; set; } = "284.33"; public string R_L2 { get; set; } = "127.58"; public string R_VR { get; set; } = "3.02"; public string R_VG { get; set; } = "6.50"; public string R_VB { get; set; } = "5.80"; public string R_I { get; set; } = "77900.0"; public string G_X1 { get; set; } = "0.2380"; public string G_X2 { get; set; } = "0.2063"; public string G_Y1 { get; set; } = "0.7181"; public string G_Y2 { get; set; } = "0.7130"; public string G_L1 { get; set; } = "922.49"; public string G_L2 { get; set; } = "436.81"; public string G_VR { get; set; } = "6.50"; public string G_VG { get; set; } = "3.32"; public string G_VB { get; set; } = "6.50"; public string G_I { get; set; } = "73200.0"; public string B_X1 { get; set; } = "0.1428"; public string B_X2 { get; set; } = "0.1490"; public string B_Y1 { get; set; } = "0.0468"; public string B_Y2 { get; set; } = "0.0401"; public string B_L1 { get; set; } = "85.03"; public string B_L2 { get; set; } = "33.29"; public string B_VR { get; set; } = "5.80"; public string B_VG { get; set; } = "6.50"; public string B_VB { get; set; } = "2.72"; public string B_I { get; set; } = "113900.0"; public string G1_X1 { get; set; } = "0.2999"; public string G1_X2 { get; set; } = "0.2914"; public string G1_Y1 { get; set; } = "0.3092"; public string G1_Y2 { get; set; } = "0.3189"; public string G1_L1 { get; set; } = "12.73"; public string G1_L2 { get; set; } = "6.07"; public string G1_VR { get; set; } = "5.53"; public string G1_VG { get; set; } = "5.65"; public string G1_VB { get; set; } = "5.15"; public string G1_I { get; set; } = "3100.0"; public string G2_X1 { get; set; } = "0.3023"; public string G2_X2 { get; set; } = "0.2885"; public string G2_Y1 { get; set; } = "0.3087"; public string G2_Y2 { get; set; } = "0.3152"; public string G2_L1 { get; set; } = "59.90"; public string G2_L2 { get; set; } = "27.81"; public string G2_VR { get; set; } = "4.95"; public string G2_VG { get; set; } = "5.10"; public string G2_VB { get; set; } = "4.69"; public string G2_I { get; set; } = "12700.0"; public string G3_X1 { get; set; } = "0.2969"; public string G3_X2 { get; set; } = "0.2816"; public string G3_Y1 { get; set; } = "0.3111"; public string G3_Y2 { get; set; } = "0.3171"; public string G3_L1 { get; set; } = "144.32"; public string G3_L2 { get; set; } = "66.64"; public string G3_VR { get; set; } = "4.58"; public string G3_VG { get; set; } = "4.70"; public string G3_VB { get; set; } = "4.30"; public string G3_I { get; set; } = "29700.0"; public string G4_X1 { get; set; } = "0.2952"; public string G4_X2 { get; set; } = "0.2784"; public string G4_Y1 { get; set; } = "0.3171"; public string G4_Y2 { get; set; } = "0.3231"; public string G4_L1 { get; set; } = "266.88"; public string G4_L2 { get; set; } = "122.60"; public string G4_VR { get; set; } = "4.28"; public string G4_VG { get; set; } = "4.37"; public string G4_VB { get; set; } = "3.99"; public string G4_I { get; set; } = "53900.0"; public string AFT_SIDE_JNCD { get; set; } = "3.8802"; }; public _CELL_INFO CELL_INFO = new _CELL_INFO(); public _PATTERN_INFO PATTERN_INFO = new _PATTERN_INFO(); public GammaIniFile(string path) : base(path) { } public GammaIniFile() { } } }