Skip to content
Snippets Groups Projects
Commit 0318c264 authored by Nick Draper's avatar Nick Draper
Browse files

Merge branch '28093_only_retain_running_algorithms' of...

Merge branch '28093_only_retain_running_algorithms' of https://github.com/mantidproject/mantid into 28093_only_retain_running_algorithms_2
parents 6a0171d2 30857bd4
No related branches found
No related tags found
No related merge requests found
......@@ -59,8 +59,7 @@ Usage
# This will cancel both algorithms
# you can do the same in the GUI
# by clicking on the details button on the bottom right
AlgorithmManager.newestInstanceOf("MonitorLiveData").cancel()
AlgorithmManager.newestInstanceOf("FakeISISEventDAE").cancel()
AlgorithmManager.cancelAll()
time.sleep(1)
#--------------------------------------------------------------------------------------------------
......
......@@ -48,8 +48,7 @@ Usage
# This will cancel both algorithms
# you can do the same in the GUI
# by clicking on the details button on the bottom right
AlgorithmManager.newestInstanceOf("MonitorLiveData").cancel()
AlgorithmManager.newestInstanceOf("FakeISISHistoDAE").cancel()
AlgorithmManager.cancelAll()
time.sleep(1)
#--------------------------------------------------------------------------------------------------
......
......@@ -49,7 +49,7 @@ Usage
# This will cancel the rocording algorithm
# you can do the same in the GUI
# by clicking on the details button on the bottom right
AlgorithmManager.newestInstanceOf("RecordPythonScript").cancel()
AlgorithmManager.cancelAll()
thread.join()
#Load and print the resulting file
......
......@@ -150,8 +150,7 @@ Usage
# This will cancel both algorithms
# you can do the same in the GUI
# by clicking on the details button on the bottom right
AlgorithmManager.newestInstanceOf("MonitorLiveData").cancel()
AlgorithmManager.newestInstanceOf("FakeISISEventDAE").cancel()
AlgorithmManager.cancelAll()
time.sleep(1)
#--------------------------------------------------------------------------------------------------
......@@ -216,8 +215,7 @@ Output:
# This will cancel both algorithms
# you can do the same in the GUI
# by clicking on the details button on the bottom right
AlgorithmManager.newestInstanceOf("MonitorLiveData").cancel()
AlgorithmManager.newestInstanceOf("FakeISISHistoDAE").cancel()
AlgorithmManager.cancelAll()
time.sleep(1)
#--------------------------------------------------------------------------------------------------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment