From dda90bcf6adecdf2e247dfc1c3b7d2d615e7fc62 Mon Sep 17 00:00:00 2001 From: Sven Augustin Date: Thu, 7 Jul 2022 20:45:18 +0200 Subject: [PATCH] removed weird standa_mirror --- slic/devices/loptics/unused/standa_mirror.py | 22 -------------------- 1 file changed, 22 deletions(-) delete mode 100644 slic/devices/loptics/unused/standa_mirror.py diff --git a/slic/devices/loptics/unused/standa_mirror.py b/slic/devices/loptics/unused/standa_mirror.py deleted file mode 100644 index 049cedee..00000000 --- a/slic/devices/loptics/unused/standa_mirror.py +++ /dev/null @@ -1,22 +0,0 @@ -from epics import PV -from slic.devices.general.motor import Motor - - -class Laser_Exp: - - def __init__(self, ID): - self.ID = ID - - ### Mirrors used in the expeirment ### - try: - self.phi = Motor(ID + "-M517:MOT") - except: - print("No Standa steering phi mirror") - - try: - self.th = Motor(ID + "-M518:MOT") - except: - print("No Standa steering theta mirror") - - -