VentRoutine.cs 613 B

123456789101112131415161718192021222324252627282930313233343536
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using Aitex.Core.RT.Routine;
  7. using Venus_RT.Devices;
  8. namespace Venus_RT.Modules.PMs
  9. {
  10. class VentRoutine : PMRoutineBase, IRoutine
  11. {
  12. public VentRoutine(JetPM chamber) : base(chamber)
  13. {
  14. Name = "vent";
  15. }
  16. public Result Start(params object[] objs)
  17. {
  18. return Result.DONE;
  19. }
  20. public Result Monitor()
  21. {
  22. return Result.DONE;
  23. }
  24. public void Abort()
  25. {
  26. }
  27. }
  28. }