Skip to content

Commit

Permalink
Update docstring for ADTriggerStatus
Browse files Browse the repository at this point in the history
  • Loading branch information
jwlodek committed Mar 22, 2024
1 parent e93afea commit 0033f48
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion ophyd/areadetector/trigger_mixins.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,12 @@ class ADTriggerStatus(DeviceStatus):
A Status for AreaDetector triggers
A special status object that notifies watches (progress bars)
based on comparing device.cam.array_counter to device.cam.num_images.
based on comparing the two signal values counter_signal and
target_signal passed to the object instance at __init__. Once the
value of counter_signal reaches target_signal, the operation is considered done.
If these two signals are passed in as None or not passed in at all (default),
then the standard device.cam.array_counter signal is used as the
progress indicator, and device.cam.num_images is used as the target.
"""

def __init__(self, *args, counter_signal = None, target_signal = None, **kwargs):
Expand Down

0 comments on commit 0033f48

Please sign in to comment.