천호석
2022-06-17 4de9ea98e13449174aa2cd09c8351fc0e978f44a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
namespace SHARP_CLAS_UI
{
    public class Parameter_Mode
    {
        public bool Agv_Skip { get; set; }
        public bool LD_Bcr_Skip { get; set; }
        public bool Cell_Id_Bcr_Skip { get; set; }
        public bool Uld_Bcr_Skip { get; set; }
        public bool Film_Judge_Skip { get; set; }
        public bool Pre_Align_Skip { get; set; }
        public bool Fine_Align_Skip { get; set; }
        public bool Measurement_Skip { get; set; }
        public bool Ablation_Skip { get; set; }
        public bool Plasma_Skip { get; set; }
        public bool LD_Stacker_Skip { get; set; }
        public bool ULD_Stacker_Skip { get; set; }
        public bool Film_Judge_Mode { get; set; }
        public bool Ablation_Stage_1_1_Skip { get; set; }
        public bool Ablation_Stage_1_2_Skip { get; set; }
        public bool Ablation_Stage_2_1_Skip { get; set; }
        public bool Ablation_Stage_2_2_Skip { get; set; }
        public bool Auto_Power_Skip { get; set; }
        public Parameter_Mode()
        {
            Agv_Skip = false;
            LD_Bcr_Skip = false;
            Cell_Id_Bcr_Skip = false;
            Uld_Bcr_Skip = false;
            Film_Judge_Skip = false;
            Pre_Align_Skip = false;
            Fine_Align_Skip = false;
            Measurement_Skip = false;
            Ablation_Skip = false;
            Plasma_Skip = false;
            LD_Stacker_Skip = false;
            ULD_Stacker_Skip = false;
            Film_Judge_Mode = false;
            Ablation_Stage_1_1_Skip = false;
            Ablation_Stage_1_2_Skip = false;
            Ablation_Stage_2_1_Skip = false;
            Ablation_Stage_2_2_Skip = false;
            Auto_Power_Skip = false;
        }
 
        public Parameter_Mode Clone()
        {
            Parameter_Mode mode = new Parameter_Mode();
 
            mode.Agv_Skip = this.Agv_Skip;
            mode.LD_Bcr_Skip = this.LD_Bcr_Skip;
            mode.Cell_Id_Bcr_Skip = this.Cell_Id_Bcr_Skip;
            mode.Uld_Bcr_Skip = this.Uld_Bcr_Skip;
            mode.Film_Judge_Skip = this.Film_Judge_Skip;
            mode.Pre_Align_Skip = this.Pre_Align_Skip;
            mode.Fine_Align_Skip = this.Fine_Align_Skip;
            mode.Measurement_Skip = this.Measurement_Skip;
            mode.Ablation_Skip = this.Ablation_Skip;
            mode.Plasma_Skip = this.Plasma_Skip;
            mode.LD_Stacker_Skip = this.LD_Stacker_Skip;
            mode.ULD_Stacker_Skip = this.ULD_Stacker_Skip;
            mode.Film_Judge_Mode = this.Film_Judge_Mode;
            mode.Ablation_Stage_1_1_Skip = this.Ablation_Stage_1_1_Skip;
            mode.Ablation_Stage_1_2_Skip = this.Ablation_Stage_1_2_Skip;
            mode.Ablation_Stage_2_1_Skip = this.Ablation_Stage_2_1_Skip;
            mode.Ablation_Stage_2_2_Skip = this.Ablation_Stage_2_2_Skip;
            mode.Auto_Power_Skip = this.Auto_Power_Skip;
 
            return mode;
        }
    }
}