Newer
Older
#include "MantidQtCustomInterfaces/MultiDatasetFit/MultiDatasetFit.h"
#include "MantidQtCustomInterfaces/MultiDatasetFit/MDFDataController.h"
#include "MantidQtCustomInterfaces/MultiDatasetFit/MDFPlotController.h"
#include "MantidQtCustomInterfaces/MultiDatasetFit/MDFEditLocalParameterDialog.h"
#include "MantidAPI/AlgorithmManager.h"
#include "MantidAPI/AnalysisDataService.h"
#include "MantidAPI/FunctionFactory.h"
#include "MantidAPI/ITableWorkspace.h"
#include "MantidKernel/TimeSeriesProperty.h"
#include "MantidQtAPI/AlgorithmRunner.h"
#include "MantidQtMantidWidgets/FitOptionsBrowser.h"
#include "MantidQtMantidWidgets/FunctionBrowser.h"
#include <QMessageBox>
#include <QToolBar>
#include <QSettings>
namespace{
// tool options pages
const int zoomToolPage = 0;
const int rangeToolPage = 1;
}
namespace MantidQt
{
namespace CustomInterfaces
{
//Register the class with the factory
DECLARE_SUBWINDOW(MultiDatasetFit)
/// Constructor
/// @param parent :: The parent widget
MultiDatasetFit::MultiDatasetFit(QWidget *parent)
:UserSubWindow(parent), m_plotController(NULL), m_dataController(NULL), m_functionBrowser(NULL),
m_fitOptionsBrowser(NULL)
{
}
MultiDatasetFit::~MultiDatasetFit()
{
saveSettings();
m_plotController->clear();
}
/// Initilize the layout.
void MultiDatasetFit::initLayout()
{
m_uiForm.setupUi(this);
m_uiForm.hSplitter->setStretchFactor(0,0);
m_uiForm.hSplitter->setStretchFactor(1,1);
m_uiForm.vSplitter->setStretchFactor(0,0);
m_uiForm.vSplitter->setStretchFactor(1,1);
QHeaderView *header = m_uiForm.dataTable->horizontalHeader();
header->setResizeMode(0,QHeaderView::Stretch);
header->setResizeMode(1,QHeaderView::Fixed);
m_uiForm.btnRemove->setEnabled( false );
connect(m_uiForm.btnFit,SIGNAL(clicked()),this,SLOT(fit()));
m_dataController = new MDF::DataController(this, m_uiForm.dataTable);
connect(m_dataController,SIGNAL(hasSelection(bool)), m_uiForm.btnRemove, SLOT(setEnabled(bool)));
connect(m_uiForm.btnAddWorkspace,SIGNAL(clicked()),m_dataController,SLOT(addWorkspace()));
connect(m_uiForm.btnRemove,SIGNAL(clicked()),m_dataController,SLOT(removeSelectedSpectra()));
connect(m_uiForm.cbApplyRangeToAll,SIGNAL(toggled(bool)),m_dataController,SLOT(setFittingRangeGlobal(bool)));
m_plotController = new MDF::PlotController(this,
m_uiForm.plot,
m_uiForm.dataTable,
m_uiForm.cbPlotSelector,
m_uiForm.btnPrev,
m_uiForm.btnNext);
connect(m_dataController,SIGNAL(dataTableUpdated()),m_plotController,SLOT(tableUpdated()));
connect(m_dataController,SIGNAL(dataSetUpdated(int)),m_plotController,SLOT(updateRange(int)));
connect(m_dataController,SIGNAL(dataTableUpdated()),this,SLOT(setLogNames()));
connect(m_dataController,SIGNAL(dataTableUpdated()),this,SLOT(invalidateOutput()));
connect(m_plotController,SIGNAL(fittingRangeChanged(int, double, double)),m_dataController,SLOT(setFittingRange(int, double, double)));
connect(m_uiForm.cbShowDataErrors,SIGNAL(toggled(bool)),m_plotController,SLOT(showDataErrors(bool)));
connect(m_uiForm.btnToVisibleRange,SIGNAL(clicked()),m_plotController,SLOT(resetRange()));
connect(m_uiForm.btnToFittingRange,SIGNAL(clicked()),m_plotController,SLOT(zoomToRange()));
QSplitter* splitter = new QSplitter(Qt::Vertical,this);
m_functionBrowser = new MantidQt::MantidWidgets::FunctionBrowser(NULL, true);
m_functionBrowser->setColumnSizes(100, 100, 45);
splitter->addWidget( m_functionBrowser );
connect(m_functionBrowser,SIGNAL(localParameterButtonClicked(const QString&)),this,SLOT(editLocalParameterValues(const QString&)));
connect(m_functionBrowser,SIGNAL(functionStructureChanged()),this,SLOT(reset()));
connect(m_functionBrowser,SIGNAL(globalsChanged()),this,SLOT(checkFittingType()));
connect(m_plotController,SIGNAL(currentIndexChanged(int)),m_functionBrowser,SLOT(setCurrentDataset(int)));
connect(m_dataController,SIGNAL(spectraRemoved(QList<int>)),m_functionBrowser,SLOT(removeDatasets(QList<int>)));
connect(m_dataController,SIGNAL(spectraAdded(int)),m_functionBrowser,SLOT(addDatasets(int)));
m_fitOptionsBrowser = new MantidQt::MantidWidgets::FitOptionsBrowser(
NULL, MantidQt::MantidWidgets::FitOptionsBrowser::SimultaneousAndSequential);
connect(m_fitOptionsBrowser,SIGNAL(changedToSequentialFitting()),this,SLOT(setLogNames()));
splitter->addWidget(m_fitOptionsBrowser);
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
m_uiForm.browserLayout->addWidget( splitter );
createPlotToolbar();
// filters
m_functionBrowser->installEventFilter( this );
m_fitOptionsBrowser->installEventFilter( this );
m_uiForm.plot->installEventFilter( this );
m_uiForm.dataTable->installEventFilter( this );
m_plotController->enableZoom();
showInfo( "Add some data, define fitting function" );
loadSettings();
}
/// Create the tool bar for the plot widget.
void MultiDatasetFit::createPlotToolbar()
{
// ----- Main tool bar --------
auto toolBar = new QToolBar(this);
toolBar->setIconSize(QSize(16,16));
auto group = new QActionGroup(this);
auto action = new QAction(this);
action->setIcon(QIcon(":/MultiDatasetFit/icons/zoom.png"));
action->setCheckable(true);
action->setChecked(true);
action->setToolTip("Zooming tool");
connect(action,SIGNAL(triggered()),this,SLOT(enableZoom()));
group->addAction(action);
action = new QAction(this);
action->setIcon(QIcon(":/MultiDatasetFit/icons/panning.png"));
action->setCheckable(true);
action->setToolTip("Panning tool");
connect(action,SIGNAL(triggered()),this,SLOT(enablePan()));
group->addAction(action);
action = new QAction(this);
action->setIcon(QIcon(":/MultiDatasetFit/icons/range.png"));
action->setCheckable(true);
action->setToolTip("Set fitting range");
connect(action,SIGNAL(triggered()),this,SLOT(enableRange()));
group->addAction(action);
toolBar->addActions(group->actions());
m_uiForm.horizontalLayout->insertWidget(3,toolBar);
}
/// Get the name of the output workspace
QString MultiDatasetFit::getOutputWorkspaceName() const
{
return QString::fromStdString(m_outputWorkspaceName);
}
/// Create a multi-domain function to fit all the spectra in the data table.
boost::shared_ptr<Mantid::API::IFunction> MultiDatasetFit::createFunction() const
{
return m_functionBrowser->getGlobalFunction();
}
/// Fit the data sets sequentially if there are no global parameters.
void MultiDatasetFit::fitSequential()
std::ostringstream input;
int n = getNumberOfSpectra();
for(int ispec = 0; ispec < n; ++ispec)
input << getWorkspaceName(ispec) << ",i" << getWorkspaceIndex(ispec) << ";";
auto fun = m_functionBrowser->getFunction();
auto fit = Mantid::API::AlgorithmManager::Instance().create("PlotPeakByLogValue");
fit->initialize();
fit->setPropertyValue("Function", fun->asString() );
fit->setPropertyValue("Input", input.str());
auto range = getFittingRange(0);
fit->setProperty( "StartX", range.first );
fit->setProperty( "EndX", range.second );
m_fitOptionsBrowser->copyPropertiesToAlgorithm(*fit);
m_outputWorkspaceName = m_fitOptionsBrowser->getProperty("OutputWorkspace").toStdString() + "_Workspaces";
removeOldOutput();
m_fitRunner.reset( new API::AlgorithmRunner() );
connect( m_fitRunner.get(),SIGNAL(algorithmComplete(bool)), this, SLOT(finishFit(bool)), Qt::QueuedConnection );
m_fitRunner->startAlgorithm(fit);
}
catch(std::exception& e)
{
QString mess(e.what());
const int maxSize = 500;
if ( mess.size() > maxSize )
{
mess = mess.mid(0,maxSize);
mess += "...";
}
QMessageBox::critical( this, "MantidPlot - Error", QString("PlotPeakByLogValue failed:\n\n %1").arg(mess) );
/// Fit the data simultaneously.
void MultiDatasetFit::fitSimultaneous()
{
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
try
{
auto fun = createFunction();
auto fit = Mantid::API::AlgorithmManager::Instance().create("Fit");
fit->initialize();
fit->setProperty("Function", fun );
fit->setPropertyValue("InputWorkspace", getWorkspaceName(0));
fit->setProperty("WorkspaceIndex", getWorkspaceIndex(0));
auto range = getFittingRange(0);
fit->setProperty( "StartX", range.first );
fit->setProperty( "EndX", range.second );
int n = getNumberOfSpectra();
for(int ispec = 1; ispec < n; ++ispec)
{
std::string suffix = boost::lexical_cast<std::string>(ispec);
fit->setPropertyValue( "InputWorkspace_" + suffix, getWorkspaceName(ispec) );
fit->setProperty( "WorkspaceIndex_" + suffix, getWorkspaceIndex(ispec) );
auto range = getFittingRange(ispec);
fit->setProperty( "StartX_" + suffix, range.first );
fit->setProperty( "EndX_" + suffix, range.second );
}
m_fitOptionsBrowser->copyPropertiesToAlgorithm(*fit);
m_outputWorkspaceName = m_fitOptionsBrowser->getProperty("Output").toStdString();
if ( m_outputWorkspaceName.empty() )
{
m_outputWorkspaceName = "out";
fit->setPropertyValue("Output",m_outputWorkspaceName);
m_fitOptionsBrowser->setProperty("Output","out");
}
if (n == 1)
{
m_outputWorkspaceName += "_Workspace";
}
else
{
m_outputWorkspaceName += "_Workspaces";
}
removeOldOutput();
m_fitRunner.reset( new API::AlgorithmRunner() );
connect( m_fitRunner.get(),SIGNAL(algorithmComplete(bool)), this, SLOT(finishFit(bool)), Qt::QueuedConnection );
m_fitRunner->startAlgorithm(fit);
}
catch(std::exception& e)
{
QString mess(e.what());
const int maxSize = 500;
if ( mess.size() > maxSize )
{
mess = mess.mid(0,maxSize);
mess += "...";
}
QMessageBox::critical( this, "MantidPlot - Error", QString("Fit failed:\n\n %1").arg(mess) );
}
}
/// Run the fitting algorithm.
void MultiDatasetFit::fit()
{
if ( !m_functionBrowser->hasFunction() )
{
QMessageBox::warning( this, "MantidPlot - Warning","Function wasn't set." );
return;
}
auto fittingType = m_fitOptionsBrowser->getCurrentFittingType();
if (fittingType == MantidWidgets::FitOptionsBrowser::Simultaneous)
fitSimultaneous();
}
else if (fittingType == MantidWidgets::FitOptionsBrowser::Sequential)
{
fitSequential();
}
else
{
throw std::logic_error("Unrecognised fitting type. Only Normal and Sequential are accepted.");
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
}
}
/// Get the workspace name of the i-th spectrum.
/// @param i :: Index of a spectrum in the data table.
std::string MultiDatasetFit::getWorkspaceName(int i) const
{
return m_dataController->getWorkspaceName(i);
}
/// Get the workspace index of the i-th spectrum.
/// @param i :: Index of a spectrum in the data table.
int MultiDatasetFit::getWorkspaceIndex(int i) const
{
return m_dataController->getWorkspaceIndex(i);
}
/// Get the fitting range for the i-th spectrum
/// @param i :: Index of a spectrum in the data table.
std::pair<double,double> MultiDatasetFit::getFittingRange(int i) const
{
return m_dataController->getFittingRange(i);
}
/// Get the number of spectra to fit to.
int MultiDatasetFit::getNumberOfSpectra() const
{
return m_dataController->getNumberOfSpectra();
}
/// Start an editor to display and edit individual local parameter values.
/// @param parName :: Fully qualified name for a local parameter (Global unchecked).
void MultiDatasetFit::editLocalParameterValues(const QString& parName)
{
MDF::EditLocalParameterDialog dialog(this,parName);
if ( dialog.exec() == QDialog::Accepted )
{
auto values = dialog.getValues();
auto fixes = dialog.getFixes();
auto ties = dialog.getTies();
assert( values.size() == getNumberOfSpectra() );
for(int i = 0; i < values.size(); ++i)
{
setLocalParameterValue(parName, i, values[i]);
setLocalParameterFixed(parName, i, fixes[i]);
setLocalParameterTie(parName, i, ties[i]);
}
}
}
/// Slot called on completion of the Fit algorithm.
/// @param error :: Set to true if Fit finishes with an error.
void MultiDatasetFit::finishFit(bool error)
{
if ( !error )
{
m_plotController->clear();
m_plotController->update();
Mantid::API::IFunction_sptr fun;
if (m_fitOptionsBrowser->getCurrentFittingType() == MantidWidgets::FitOptionsBrowser::Simultaneous)
{
fun = m_fitRunner->getAlgorithm()->getProperty("Function");
updateParameters( *fun );
}
else
{
auto paramsWSName = m_fitOptionsBrowser->getProperty("OutputWorkspace").toStdString();
if (!Mantid::API::AnalysisDataService::Instance().doesExist(paramsWSName)) return;
size_t nSpectra = getNumberOfSpectra();
if (nSpectra == 0) return;
fun = m_functionBrowser->getGlobalFunction();
auto nParams = fun->nParams() / nSpectra;
auto params = Mantid::API::AnalysisDataService::Instance().retrieveWS<Mantid::API::ITableWorkspace>(paramsWSName);
if (nParams * 2 + 2 != params->columnCount())
{
throw std::logic_error("Output table workspace has unexpected number of columns.");
}
for(size_t index = 0; index < nSpectra; ++index)
{
std::string prefix = "f" + boost::lexical_cast<std::string>(index) + ".";
for(size_t ip = 0; ip < nParams; ++ip)
{
auto colIndex = ip * 2 + 1;
auto column = params->getColumn(colIndex);
fun->setParameter(prefix + column->name(), column->toDouble(index));
}
}
updateParameters( *fun );
}
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
}
}
/// Update the interface to have the same parameter values as in a function.
/// @param fun :: A function from which to take the parameters.
void MultiDatasetFit::updateParameters(const Mantid::API::IFunction& fun)
{
m_functionBrowser->updateMultiDatasetParameters( fun );
}
/// Show a message in the info bar at the bottom of the interface.
void MultiDatasetFit::showInfo(const QString& text)
{
m_uiForm.infoBar->setText(text);
}
/// Intersept mouse-enter events to display context-specific info
/// in the "status bar".
bool MultiDatasetFit::eventFilter(QObject *widget, QEvent *evn)
{
if ( evn->type() == QEvent::Enter )
{
if ( qobject_cast<QObject*>( m_functionBrowser ) == widget )
{
showFunctionBrowserInfo();
}
else if ( qobject_cast<QObject*>( m_fitOptionsBrowser ) == widget )
{
showFitOptionsBrowserInfo();
}
else if ( qobject_cast<QObject*>( m_uiForm.plot ) == widget )
{
showPlotInfo();
}
else if ( qobject_cast<QObject*>( m_uiForm.dataTable ) == widget )
{
showTableInfo();
}
else
{
showInfo("");
}
}
return false;
}
/// Show info about the function browser.
void MultiDatasetFit::showFunctionBrowserInfo()
{
if ( m_functionBrowser->hasFunction() )
{
showInfo( "Use context menu to add more functions. Set parameters and attributes." );
}
else
{
showInfo( "Use context menu to add a function." );
}
}
/// Show info about the Fit options browser.
void MultiDatasetFit::showFitOptionsBrowserInfo()
{
showInfo( "Set Fit properties." );
}
/// Show info / tips on the plot widget.
void MultiDatasetFit::showPlotInfo()
{
QString text = "Use Alt+. and Alt+, to change the data set. ";
if ( m_plotController->isZoomEnabled() )
{
text += "Click and drag to zoom in. Use middle or right button to zoom out";
}
else if ( m_plotController->isPanEnabled() )
{
text += "Click and drag to move. Use mouse wheel to zoom in and out.";
}
else if ( m_plotController->isRangeSelectorEnabled() )
{
text += "Drag the vertical dashed lines to adjust the fitting range.";
}
showInfo( text );
}
/// Show info / tips on the dataset table.
void MultiDatasetFit::showTableInfo()
{
if ( getNumberOfSpectra() > 0 )
{
showInfo("Select spectra by selecting rows. For multiple selection use Shift or Ctrl keys.");
}
else
{
showInfo("Add some data sets. Click \"Add Workspace\" button.");
}
}
/// Check that the data sets in the table are valid and remove invalid ones.
void MultiDatasetFit::checkSpectra()
{
m_dataController->checkSpectra();
}
/// Enable the zoom tool.
void MultiDatasetFit::enableZoom()
{
m_plotController->enableZoom();
m_uiForm.toolOptions->setCurrentIndex(zoomToolPage);
}
/// Enable the panning tool.
void MultiDatasetFit::enablePan()
{
m_plotController->enablePan();
m_uiForm.toolOptions->setCurrentIndex(zoomToolPage);
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
}
/// Enable the fitting range selection tool.
void MultiDatasetFit::enableRange()
{
m_plotController->enableRange();
m_uiForm.toolOptions->setCurrentIndex(rangeToolPage);
}
/// Set value of a local parameter
/// @param parName : Name of a local parameter.
/// @param i :: Index of the dataset (spectrum).
/// @param value :: New value for the parameter.
void MultiDatasetFit::setLocalParameterValue(const QString& parName, int i, double value)
{
m_functionBrowser->setLocalParameterValue(parName, i, value);
}
/// Get value of a local parameter
/// @param parName : Name of a local parameter.
/// @param i :: Index of the dataset (spectrum).
double MultiDatasetFit::getLocalParameterValue(const QString& parName, int i) const
{
return m_functionBrowser->getLocalParameterValue(parName, i);
}
/// Reset the caches. Prepare to fill them in lazily.
void MultiDatasetFit::reset()
{
m_functionBrowser->resetLocalParameters();
m_functionBrowser->setNumberOfDatasets( getNumberOfSpectra() );
}
/// Check if a local parameter is fixed
/// @param parName : Name of a local parameter.
/// @param i :: Index of the dataset (spectrum).
bool MultiDatasetFit::isLocalParameterFixed(const QString& parName, int i) const
{
return m_functionBrowser->isLocalParameterFixed(parName, i);
}
/// Fix/unfix local parameter
/// @param parName : Name of a local parameter.
/// @param i :: Index of the dataset (spectrum).
/// @param fixed :: Should the parameter be fixed (true) or unfixed (false).
void MultiDatasetFit::setLocalParameterFixed(const QString& parName, int i, bool fixed)
{
m_functionBrowser->setLocalParameterFixed(parName, i, fixed);
}
/// Get the tie for a local parameter.
/// @param parName : Name of a local parameter.
/// @param i :: Index of the dataset (spectrum).
QString MultiDatasetFit::getLocalParameterTie(const QString& parName, int i) const
{
return m_functionBrowser->getLocalParameterTie(parName, i);
}
/// Set a tie for a local parameter.
/// @param parName : Name of a local parameter.
/// @param i :: Index of the dataset (spectrum).
/// @param tie :: A tie string to set.
void MultiDatasetFit::setLocalParameterTie(const QString& parName, int i, QString tie)
{
m_functionBrowser->setLocalParameterTie(parName, i, tie);
}
/// Load settings
void MultiDatasetFit::loadSettings()
{
QSettings settings;
settings.beginGroup("Mantid/MultiDatasetFit");
m_fitOptionsBrowser->loadSettings( settings );
bool option = settings.value("ShowDataErrors",false).asBool();
m_uiForm.cbShowDataErrors->setChecked(option);
option = settings.value("ApplyRangeToAll",false).asBool();
m_uiForm.cbApplyRangeToAll->setChecked(option);
}
/// Save settings
void MultiDatasetFit::saveSettings() const
{
QSettings settings;
settings.beginGroup("Mantid/MultiDatasetFit");
m_fitOptionsBrowser->saveSettings( settings );
settings.setValue("ShowDataErrors",m_uiForm.cbShowDataErrors->isChecked());
settings.setValue("ApplyRangeToAll",m_uiForm.cbApplyRangeToAll->isChecked());
/// Make sure that simultaneous fitting is on
/// when the function has at least one global parameter.
void MultiDatasetFit::checkFittingType()
{
auto globals = m_functionBrowser->getGlobalParameters();
if (globals.isEmpty())
{
m_fitOptionsBrowser->unlockCurrentFittingType();
}
else
{
m_fitOptionsBrowser->lockCurrentFittingType(MantidWidgets::FitOptionsBrowser::Simultaneous);
}
}
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
/**
* Collect names of the logs in the data workspaces and pass them on to m_fitOptionsBrowser.
*/
void MultiDatasetFit::setLogNames()
{
if (getNumberOfSpectra() > 0)
{
try
{
auto ws = Mantid::API::AnalysisDataService::Instance().retrieveWS<Mantid::API::MatrixWorkspace>(getWorkspaceName(0));
const std::vector<Mantid::Kernel::Property*> logs = ws->run().getLogData();
QStringList logNames;
for(int i=0;i<static_cast<int>(logs.size());++i)
{
if (dynamic_cast<Mantid::Kernel::TimeSeriesProperty<double>*>(logs[i]))
{
logNames << QString::fromStdString(logs[i]->name());
}
}
if (!logNames.isEmpty())
{
m_fitOptionsBrowser->setLogNames(logNames);
}
}
catch (...)
{/*Maybe the data table hasn't updated yet*/}
}
}
/// Remove old output from Fit.
void MultiDatasetFit::removeOldOutput()
{
if (Mantid::API::AnalysisDataService::Instance().doesExist(
m_outputWorkspaceName) &&
Mantid::API::AnalysisDataService::Instance()
.retrieveWS<Mantid::API::WorkspaceGroup>(m_outputWorkspaceName))
{
Mantid::API::AnalysisDataService::Instance().deepRemoveGroup(
m_outputWorkspaceName);
}
}
/// Invalidate the previous fit output
void MultiDatasetFit::invalidateOutput()
{
m_outputWorkspaceName = "";
m_plotController->clear();
m_plotController->update();
}
} // CustomInterfaces
} // MantidQt