123456789101112131415161718192021222324252627282930313233343536 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using Aitex.Core.RT.Routine;
- using Venus_RT.Devices;
- namespace Venus_RT.Modules.PMs
- {
- class VentRoutine : PMRoutineBase, IRoutine
- {
- public VentRoutine(JetPM chamber) : base(chamber)
- {
- Name = "vent";
- }
- public Result Start(params object[] objs)
- {
- return Result.DONE;
- }
- public Result Monitor()
- {
- return Result.DONE;
- }
- public void Abort()
- {
- }
- }
- }
|