Skip to content

Commit 3277c91

Browse files
Instantitate fastcs eiger on i19-2 (#1673)
* feat: instantitate fastcs eiger on i19-2 * refactor: set suffixes explicitly * style: rename fastcs_eiger to eiger
1 parent f9ffabe commit 3277c91

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

src/dodal/beamlines/i19_2.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
from pathlib import Path
22

3+
from ophyd_async.fastcs.eiger import EigerDetector
34
from ophyd_async.fastcs.panda import HDFPanda
45

56
from dodal.common.beamlines.beamline_utils import (
@@ -116,3 +117,13 @@ def panda() -> HDFPanda:
116117
prefix=f"{PREFIX.beamline_prefix}-EA-PANDA-01:",
117118
path_provider=get_path_provider(),
118119
)
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

Comments
 (0)