From 4370b23e1b1e1f972f4ab2835077e7e27ddb865d Mon Sep 17 00:00:00 2001 From: Keith Brown Date: Tue, 14 Jan 2014 14:30:58 +0000 Subject: [PATCH] Refs #8590. Remove debug code FakeEventDataListener wasn't doing the job as the workspace it generated didn't have an accociated paremeter file so it caused an error later in quick when it tried to get those parameters. --- .../scripts/Reflectometry/isis_reflectometry/load_live_runs.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Code/Mantid/scripts/Reflectometry/isis_reflectometry/load_live_runs.py b/Code/Mantid/scripts/Reflectometry/isis_reflectometry/load_live_runs.py index 06d7115b870c..3718203db503 100644 --- a/Code/Mantid/scripts/Reflectometry/isis_reflectometry/load_live_runs.py +++ b/Code/Mantid/scripts/Reflectometry/isis_reflectometry/load_live_runs.py @@ -1,7 +1,6 @@ from mantid.simpleapi import * def get_live_data(InstrumentName, Accumulation = "Add", OutputName = "live"): - #StartLiveData(Instrument=str(InstrumentName), Outputworkspace=str(OutputName), AccumulationMethod = Accumulation) - StartLiveData(Instrument="FakeEventDataListener", Outputworkspace=str(OutputName), AccumulationMethod = Accumulation) + StartLiveData(Instrument=str(InstrumentName), Outputworkspace=str(OutputName), AccumulationMethod = Accumulation) ws = mtd[OutputName] return ws def is_live_run(run):