Skip to content

Commit

Permalink
Add p38 beamline definition (#127)
Browse files Browse the repository at this point in the history
  • Loading branch information
keithralphs authored Jul 26, 2023
1 parent b625b9e commit c184692
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/dodal/beamlines/p38.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
from dodal.devices.areadetector import AdAravisDetector
from dodal.utils import BeamlinePrefix

PREFIX: str = BeamlinePrefix("p38").beamline_prefix


def d11(name: str = "D11") -> AdAravisDetector:
return AdAravisDetector(name=name, prefix=f"{PREFIX}-DI-DCAM-03:")


def d12(name: str = "D12") -> AdAravisDetector:
return AdAravisDetector(name=name, prefix=f"{PREFIX}-DI-DCAM-04:")

0 comments on commit c184692

Please sign in to comment.