large cleanup, part 1

This commit is contained in:
2023-09-13 17:29:36 +02:00
parent 89a76ee62a
commit ef7007582f
47 changed files with 5106 additions and 1323 deletions

7
devices/knife_edge.py Normal file
View File

@@ -0,0 +1,7 @@
from slic.core.device.simpledevice import SimpleDevice
from slic.devices.general.motor import Motor
mot_x = Motor("SAR-EXPMX:MOT_FX")
mot_y = Motor("SAR-EXPMX:MOT_FY")
KnifeEdge = SimpleDevice("2D Knife edge stage", x=mot_x, y=mot_y)