From 4a0c60dce141177f3d510ed42f05a9d83951eef2 Mon Sep 17 00:00:00 2001 From: sfop Date: Wed, 21 Dec 2016 11:28:37 +0100 Subject: [PATCH] Closedown --- script/test/bs4.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/script/test/bs4.py b/script/test/bs4.py index 3174c26..ad217da 100644 --- a/script/test/bs4.py +++ b/script/test/bs4.py @@ -16,7 +16,7 @@ st1.initialize() #Filter -st1.setFilter("SINEG01-DICT210:GUN_CHARGE > -10.0") +st1.setFilter("SINEG01-DICT210:GUN_CHARGE < 0.0") try: while(True): #The stream can be used on any conventional scan. The next stream value is sampled. @@ -30,14 +30,14 @@ try: #An individual stream channel can be used in a conventional scan, but in this case the stream #must be explicitly started, and there is no guarantee the values belong to the same PulseID #(likely they are since as only cached values are taken). - st1.start(True) - tscan ([s1,s2], 10 , 0.1) + #st1.start(True) + #tscan ([s1,s2], 10 , 0.1) #If waveform individual stream channel is used, and no size is provided in constructor/config, #then it must be read previously to the scan to update the size value. - st1.start(True) - tscan ([s1,s2,s3], 10 , 0.1) - + #st1.start(True) + #tscan ([s1,s2,s3], 10 , 0.1) + #st1.stop() finally: st1.close()