Skip to content
Snippets Groups Projects
Commit 24426c26 authored by Elliot Oram's avatar Elliot Oram
Browse files

Removed depricated call to python script in interface

Refs #13826
parent 411b16f6
No related branches found
No related tags found
No related merge requests found
...@@ -134,8 +134,6 @@ void Quasi::run() { ...@@ -134,8 +134,6 @@ void Quasi::run() {
bool useResNorm = false; bool useResNorm = false;
std::string resNormFile(""); std::string resNormFile("");
std::string pyInput = "from IndirectBayes import QLRun\n";
std::string sampleName = std::string sampleName =
m_uiForm.dsSample->getCurrentDataName().toStdString(); m_uiForm.dsSample->getCurrentDataName().toStdString();
std::string resName = std::string resName =
...@@ -201,15 +199,6 @@ void Quasi::run() { ...@@ -201,15 +199,6 @@ void Quasi::run() {
runAlg->setProperty("Save", save); runAlg->setProperty("Save", save);
runAlg->setProperty("Plot", plot); runAlg->setProperty("Plot", plot);
/*pyInput += "QLRun('" + program + "','" + sampleName + "','" + resName +
"','" + resNormFile + "'," + eRange + ","
" " +
nBins + "," + fitOps + ",'" + fixedWidthFile + "'," + sequence +
", "
" Save=" +
save + ", Plot='" + plot + "')\n";
runPythonScript(pyInput);*/
m_batchAlgoRunner->addAlgorithm(runAlg); m_batchAlgoRunner->addAlgorithm(runAlg);
connect(m_batchAlgoRunner, SIGNAL(batchComplete(bool)), this, connect(m_batchAlgoRunner, SIGNAL(batchComplete(bool)), this,
SLOT(algorithmComplete(bool))); SLOT(algorithmComplete(bool)));
......
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