From bba65d0756905bdb76f58a78df046f271e2372f8 Mon Sep 17 00:00:00 2001 From: Mathias Sander Date: Wed, 14 Sep 2022 16:37:51 +0200 Subject: [PATCH] changed pulse picker methods open/close to not change the trigger source to 62 and 63 --- eco/xoptics/pp.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eco/xoptics/pp.py b/eco/xoptics/pp.py index c840e17..6e7aeb4 100755 --- a/eco/xoptics/pp.py +++ b/eco/xoptics/pp.py @@ -38,12 +38,12 @@ class Pulsepick: def open(self): self._openclose.put(1) - self._evrsrc.put(62) + #self._evrsrc.put(62) print("Opened Pulse Picker") def close(self): self._openclose.put(0) - self._evrsrc.put(62) + #self._evrsrc.put(62) print("Closed Pulse Picker") def trigger(self):