From b361d84297a0f797499280e7ee99dc63be0e7bd7 Mon Sep 17 00:00:00 2001 From: Sven Augustin Date: Sun, 3 May 2020 18:06:39 +0000 Subject: [PATCH] scans -> scanner --- devices.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/devices.py b/devices.py index ef7098f..d7617cc 100755 --- a/devices.py +++ b/devices.py @@ -431,11 +431,11 @@ components = [ "args": [], "name": "scans", "desc": "server based acquisition", - "type": "slic.scans:Scanner", + "type": "slic.scanner:Scanner", "kwargs": { "data_base_dir": "scan_data", "scan_info_dir": f"/sf/bernina/data/{config['pgroup']}/res/scan_info", - "default_counters": [Component("daq")], + "default_acquisitions": [Component("daq")], "checker": Component("checker"), "scan_directories": True, }, @@ -444,11 +444,11 @@ components = [ "args": [], "name": "epics_scans", "desc": "epics non beam synchronous based acquisition", - "type": "slic.scans:Scanner", + "type": "slic.scanner:Scanner", "kwargs": { "data_base_dir": "scan_data", "scan_info_dir": f"/sf/bernina/data/{config['pgroup']}/res/epics_daq/scan_info", - "default_counters": [Component("epics_daq")], + "default_acquisitions": [Component("epics_daq")], "checker": Component("checker"), "scan_directories": True, },