-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a plan stub for a simple fly scan. Co-authored-by: Tom Cobb <[email protected]>
- Loading branch information
Showing
15 changed files
with
317 additions
and
98 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ coverage: | |
threshold: 1% | ||
patch: | ||
default: | ||
target: auto | ||
target: 90 | ||
threshold: 1% | ||
github_checks: | ||
annotations: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 3 additions & 1 deletion
4
src/ophyd_async/planstubs/__init__.py → src/ophyd_async/plan_stubs/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
from .ensure_connected import ensure_connected | ||
from .prepare_trigger_and_dets import ( | ||
from .fly import ( | ||
prepare_static_seq_table_flyer_and_detectors_with_same_trigger, | ||
time_resolved_fly_and_collect_with_static_seq_table, | ||
) | ||
|
||
__all__ = [ | ||
"time_resolved_fly_and_collect_with_static_seq_table", | ||
"prepare_static_seq_table_flyer_and_detectors_with_same_trigger", | ||
"ensure_connected", | ||
] |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,130 @@ | ||
from typing import List | ||
|
||
import bluesky.plan_stubs as bps | ||
from bluesky.utils import short_uid | ||
|
||
from ophyd_async.core.detector import DetectorTrigger, StandardDetector, TriggerInfo | ||
from ophyd_async.core.flyer import HardwareTriggeredFlyable | ||
from ophyd_async.core.utils import in_micros | ||
from ophyd_async.panda._table import SeqTable, SeqTableRow, seq_table_from_rows | ||
from ophyd_async.panda._trigger import SeqTableInfo | ||
|
||
|
||
def time_resolved_fly_and_collect_with_static_seq_table( | ||
stream_name: str, | ||
detectors: List[StandardDetector], | ||
flyer: HardwareTriggeredFlyable[SeqTableInfo], | ||
number_of_frames: int, | ||
exposure: int, | ||
shutter_time: float, | ||
repeats: int = 1, | ||
period: float = 0.0, | ||
): | ||
"""Run a scan wth a flyer and multiple detectors. | ||
The standard basic flow for a flyscan: | ||
- Set up the flyer with a static sequence table and detectors with a trigger | ||
- Declare the stream and kickoff the scan | ||
- Collect while completing | ||
This needs to be used in a plan that instantates detectors and a flyer, | ||
stages/unstages the devices, and opens and closes the run. | ||
""" | ||
# Set up scan and prepare trigger | ||
deadtime = max(det.controller.get_deadtime(exposure) for det in detectors) | ||
yield from prepare_static_seq_table_flyer_and_detectors_with_same_trigger( | ||
flyer, | ||
detectors, | ||
number_of_frames=number_of_frames, | ||
exposure=exposure, | ||
deadtime=deadtime, | ||
shutter_time=shutter_time, | ||
repeats=repeats, | ||
period=period, | ||
) | ||
yield from bps.declare_stream(*detectors, name=stream_name, collect=True) | ||
yield from bps.kickoff(flyer, wait=True) | ||
for detector in detectors: | ||
yield from bps.kickoff(detector) | ||
|
||
# collect_while_completing | ||
group = short_uid(label="complete") | ||
|
||
yield from bps.complete(flyer, wait=False, group=group) | ||
for detector in detectors: | ||
yield from bps.complete(detector, wait=False, group=group) | ||
|
||
done = False | ||
while not done: | ||
try: | ||
yield from bps.wait(group=group, timeout=0.5) | ||
except TimeoutError: | ||
pass | ||
else: | ||
done = True | ||
yield from bps.collect( | ||
*detectors, | ||
return_payload=False, | ||
name=stream_name, | ||
) | ||
yield from bps.wait(group=group) | ||
|
||
|
||
def prepare_static_seq_table_flyer_and_detectors_with_same_trigger( | ||
flyer: HardwareTriggeredFlyable[SeqTableInfo], | ||
detectors: List[StandardDetector], | ||
number_of_frames: int, | ||
exposure: float, | ||
deadtime: float, | ||
shutter_time: float, | ||
repeats: int = 1, | ||
period: float = 0.0, | ||
): | ||
"""Prepare a hardware triggered flyable and one or more detectors. | ||
Prepare a hardware triggered flyable and one or more detectors with the | ||
same trigger. This method constructs TriggerInfo and a static sequence | ||
table from required parameters. The table is required to prepare the flyer, | ||
and the TriggerInfo is required to prepare the detector(s). | ||
This prepares all supplied detectors with the same trigger. | ||
""" | ||
trigger_info = TriggerInfo( | ||
num=number_of_frames * repeats, | ||
trigger=DetectorTrigger.constant_gate, | ||
deadtime=deadtime, | ||
livetime=exposure, | ||
) | ||
|
||
trigger_time = number_of_frames * (exposure + deadtime) | ||
pre_delay = max(period - 2 * shutter_time - trigger_time, 0) | ||
|
||
table: SeqTable = seq_table_from_rows( | ||
# Wait for pre-delay then open shutter | ||
SeqTableRow( | ||
time1=in_micros(pre_delay), | ||
time2=in_micros(shutter_time), | ||
outa2=True, | ||
), | ||
# Keeping shutter open, do N triggers | ||
SeqTableRow( | ||
repeats=number_of_frames, | ||
time1=in_micros(exposure), | ||
outa1=True, | ||
outb1=True, | ||
time2=in_micros(deadtime), | ||
outa2=True, | ||
), | ||
# Add the shutter close | ||
SeqTableRow(time2=in_micros(shutter_time)), | ||
) | ||
|
||
table_info = SeqTableInfo(table, repeats) | ||
|
||
for det in detectors: | ||
yield from bps.prepare(det, trigger_info, wait=False, group="prep") | ||
yield from bps.prepare(flyer, table_info, wait=False, group="prep") | ||
yield from bps.wait(group="prep") |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.