diff --git a/addams_bec/bec_ipython_client/high_level_interface/hkl_hli.py b/addams_bec/bec_ipython_client/high_level_interface/hkl_hli.py index aab4285..88ff2d7 100644 --- a/addams_bec/bec_ipython_client/high_level_interface/hkl_hli.py +++ b/addams_bec/bec_ipython_client/high_level_interface/hkl_hli.py @@ -25,7 +25,8 @@ __all__ = [ 'orientAdd', 'orientRemove', 'orientShow', - 'orientFit' + 'orientFit', + 'ct' ] bec = builtins.__dict__.get("bec") @@ -348,6 +349,12 @@ def orientFit(): diffract.compute_UB() _showUB() +def ct(exp_time: float): + """ + Acquire all detectors + """ + scans.acquire(exp_time=exp_time) + def _showUB(): UB = diffract.get_UB()