diff --git a/slic/devices/loptics/unused/bernina_smaract_tower.py b/slic/devices/loptics/unused/bernina_smaract_tower.py deleted file mode 100755 index 99cf98e4..00000000 --- a/slic/devices/loptics/unused/bernina_smaract_tower.py +++ /dev/null @@ -1,22 +0,0 @@ -from ...general.smaract import SmarActRecord -from epics import PV - - -class SmaractTower: - - def __init__(self, Id): - self.Id = Id - - ### Mirrors used in the experiment ### - try: - self.x = SmarActRecord(Id + "-ESB1") - except: - print("No Smaract x linear stage") - - try: - self.gonio = SmarActRecord(Id + "-ESB2") - except: - print("No Smaract Gonio") - - -