diff --git a/devices/undulator.py b/devices/undulator.py index c85a655..bcc86b1 100644 --- a/devices/undulator.py +++ b/devices/undulator.py @@ -88,8 +88,8 @@ class Undulators(Adjustable): k = a.get_current_value() energy = self.convert.E(k) - all_ks = [a.get_current_value() for a in self.adjs.values()] - checks = np.isclose(all_ks, k, rtol=0, atol=0.001) +# all_ks = [a.get_current_value() for a in self.adjs.values()] +# checks = np.isclose(all_ks, k, rtol=0, atol=0.001) # if not all(checks): # print(f"Warning: Ks are not all close to {k}:") # for name, k, chk in zip(self.adjs.keys(), all_ks, checks):