From eea73e93724afca8aa2ed4e53aa4b33c1d18da3e Mon Sep 17 00:00:00 2001 From: Sven Augustin Date: Tue, 18 Aug 2020 15:50:33 +0200 Subject: [PATCH] removed deprecated file --- .../loptics/unused/bernina_smaract_tower.py | 22 ------------------- 1 file changed, 22 deletions(-) delete mode 100755 slic/devices/loptics/unused/bernina_smaract_tower.py 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") - - -