Skip to content

Commit

Permalink
Re add trans, symm and moments
Browse files Browse the repository at this point in the history
They do not care about the instrument

Refs #10266
  • Loading branch information
DanNixon committed Nov 4, 2014
1 parent 22ad3e6 commit 53fa628
Showing 1 changed file with 3 additions and 4 deletions.
Expand Up @@ -128,10 +128,10 @@ void IndirectDataReduction::initLayout()
/* m_tabs["Energy Transfer"] = new IndirectConvertToEnergy(m_uiForm, this); */
/* m_tabs["Calibration"] = new IndirectCalibration(m_uiForm, this); */
/* m_tabs["Diagnostics"] = new IndirectDiagnostics(m_uiForm, this); */
/* m_tabs["Transmission"] = new IndirectTransmission(m_uiForm, this); */
/* m_tabs["Symmetrise"] = new IndirectSymmetrise(m_uiForm, this); */
m_tabs["Transmission"] = new IndirectTransmission(m_uiForm, this);
m_tabs["Symmetrise"] = new IndirectSymmetrise(m_uiForm, this);
/* m_tabs["S(Q, w)"] = new IndirectSqw(m_uiForm, this); */
/* m_tabs["Moments"] = new IndirectMoments(m_uiForm, this); */
m_tabs["Moments"] = new IndirectMoments(m_uiForm, this);

// Handle the instrument being changed
connect(m_uiForm.cbInst, SIGNAL(instrumentSelectionChanged(const QString&)), this, SLOT(instrumentSelected(const QString&)));
Expand All @@ -150,7 +150,6 @@ void IndirectDataReduction::initLayout()
// Reset the Run button state when the tab is changed
connect(m_uiForm.tabWidget, SIGNAL(currentChanged(int)), this, SLOT(updateRunButton()));


// Connect tab signals and run any setup code
for(auto it = m_tabs.begin(); it != m_tabs.end(); ++it)
{
Expand Down

0 comments on commit 53fa628

Please sign in to comment.