From e5f630172c851734783e234631867e9639317795 Mon Sep 17 00:00:00 2001 From: Alexandre Gobbo Date: Tue, 18 Feb 2020 16:14:03 +0100 Subject: [PATCH] Script execution --- script/test/TestSplit.py | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/script/test/TestSplit.py b/script/test/TestSplit.py index 10278b9..fbe3acd 100644 --- a/script/test/TestSplit.py +++ b/script/test/TestSplit.py @@ -1,11 +1,14 @@ - -def before_pass(pass_number, scan): +def after_pass(pass_num, scan) #set_exec_pars(open=False) if pass_number>1: get_context().dataManager.splitScanData(scan) #set_exec_pars(tag="scan " + str(pass_number)) #print get_exec_pars().tag - -lscan(inp, sin, 0, 10, 10, passes=3, before_pass=before_pass) \ No newline at end of file +lscan(inp, sin, 0, 10, 10, passes=3, after_pass=after_pass) + + + + +lscan(inp, sin, 0, 10, 10, passes=3, split=True) \ No newline at end of file