Skip to content

Commit

Permalink
Refs #8590. Remove debug code
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
keithnbrown committed Jan 14, 2014
1 parent 1e9ee52 commit 4370b23
Showing 1 changed file with 1 addition and 2 deletions.
@@ -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):
Expand Down

0 comments on commit 4370b23

Please sign in to comment.