| | |
| | | public double Stage_2_2_Power_Offset { get; set; } |
| | | |
| | | public double Handler_Pitch { get; set; } |
| | | |
| | | |
| | | public int Cleaning_Count { get; set;} |
| | | public int Width_Measurement_Count { get; set; } |
| | | |
| | | public Parameter_Setting() |
| | | { |
| | | Film_Judge_Speed = 0; |
| | |
| | | |
| | | Handler_Pitch = 0; |
| | | Cleaning_Count = 0; |
| | | Width_Measurement_Count = 0; |
| | | } |
| | | |
| | | public Parameter_Setting Clone() |
| | |
| | | setting.Stage_2_2_Power_Offset = this.Stage_2_2_Power_Offset; |
| | | setting.Handler_Pitch = this.Handler_Pitch; |
| | | setting.Cleaning_Count = this.Cleaning_Count; |
| | | setting.Width_Measurement_Count = this.Width_Measurement_Count; |
| | | |
| | | return setting; |
| | | } |