Delay scan
delay_scan(daq, time_motor, time_points, sweep_time, duration=None, record=None, use_l3t=False, controls=None)
Bluesky plan that sets up and executes the delay scan.
Parameters
daq: Daq The daq
DelayNewport
The movable device in seconds
list of float
The times in second to move between
float
The duration we take to move from one end of the range to the other.
bool, optional
Whether or not to record in the daq
float, optional
If provided, the time to run in seconds. If omitted, we'll run forever.
bool, optional
If True, events argument will be interpreted to only count events that pass the level 3 trigger
dict or list of devices, optional
If provided, values will make it to DAQ data stream as variables
Source code in mfx/delay_scan.py
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 |
|
infinite_scan(detectors, motor, points, duration=None, per_step=None, md=None)
Bluesky plan that moves a motor among points until interrupted.
Parameters
detectors: list of readables Objects to read into Python in the scan.
settable
Object to move in the scan.
list of floats
Positions to move between in the scan.
float
If provided, the time to run in seconds. If omitted, we'll run forever.
Source code in mfx/delay_scan.py
104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 |
|