We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9ffabe commit 3277c91Copy full SHA for 3277c91
src/dodal/beamlines/i19_2.py
@@ -1,5 +1,6 @@
1
from pathlib import Path
2
3
+from ophyd_async.fastcs.eiger import EigerDetector
4
from ophyd_async.fastcs.panda import HDFPanda
5
6
from dodal.common.beamlines.beamline_utils import (
@@ -116,3 +117,13 @@ def panda() -> HDFPanda:
116
117
prefix=f"{PREFIX.beamline_prefix}-EA-PANDA-01:",
118
path_provider=get_path_provider(),
119
)
120
+
121
122
+@device_factory()
123
+def eiger() -> EigerDetector:
124
+ return EigerDetector(
125
+ prefix=PREFIX.beamline_prefix,
126
+ path_provider=get_path_provider(),
127
+ drv_suffix="-EA-EIGER-01:",
128
+ hdf_suffix="-EA-EIGER-01:OD:",
129
+ )
0 commit comments