update before beamtime

This commit is contained in:
2023-09-25 13:23:47 +02:00
parent 9ae13f6c8e
commit 334d41508f
2 changed files with 7 additions and 0 deletions

View File

@ -91,6 +91,7 @@ dummy = DummyAdjustable(units="au")
from slic.devices.xoptics.aramis_attenuator import Attenuator
from devices.knife_edge import KnifeEdge
from devices.standa import standa
from devices.newport import newport
Newport_large = Motor("SARES30-MOBI1:MOT_5")
OWIS = Motor("SARES30-MOBI1:MOT_6") # small OWIS linear stage

6
devices/newport.py Normal file
View File

@ -0,0 +1,6 @@
from slic.core.device.simpledevice import SimpleDevice
from slic.devices.general.motor import Motor
newport_z = Motor("SARES30-MOBI1:MOT_5")
newport = SimpleDevice("Newport linear stage base motors", z=newport_z)