From 65cb569375b4982724c0eba9c1714b4dd5fd62d5 Mon Sep 17 00:00:00 2001 From: Anthony Lim <anthony.lim@stfc.ac.uk> Date: Tue, 27 Jun 2017 15:20:12 +0100 Subject: [PATCH] refs #19835 displays norm in GUI --- .../Muon/MuonAnalysis.h | 2 + .../src/Muon/MuonAnalysis.cpp | 6 ++- .../src/Muon/MuonAnalysisFitDataPresenter.cpp | 13 +++++++ .../MuonFitDataSelector.h | 4 +- .../MuonFitDataSelector.ui | 2 +- .../MuonFitPropertyBrowser.h | 5 ++- .../MantidWidgets/src/MuonFitDataSelector.cpp | 16 ++++++-- .../src/MuonFitPropertyBrowser.cpp | 38 ++++++++++++++----- 8 files changed, 68 insertions(+), 18 deletions(-) diff --git a/MantidQt/CustomInterfaces/inc/MantidQtCustomInterfaces/Muon/MuonAnalysis.h b/MantidQt/CustomInterfaces/inc/MantidQtCustomInterfaces/Muon/MuonAnalysis.h index e763f9876d9..a6628b5322f 100644 --- a/MantidQt/CustomInterfaces/inc/MantidQtCustomInterfaces/Muon/MuonAnalysis.h +++ b/MantidQt/CustomInterfaces/inc/MantidQtCustomInterfaces/Muon/MuonAnalysis.h @@ -257,6 +257,8 @@ private slots: void setTFAsymm(Muon::TFAsymmState); /// Called when "overwrite" is changed void updateDataPresenterOverwrite(int state); + //update norm + void updateNorm(QString name); private: /// Initialize local Python environment diff --git a/MantidQt/CustomInterfaces/src/Muon/MuonAnalysis.cpp b/MantidQt/CustomInterfaces/src/Muon/MuonAnalysis.cpp index cef8719b674..56a0aa9b57b 100644 --- a/MantidQt/CustomInterfaces/src/Muon/MuonAnalysis.cpp +++ b/MantidQt/CustomInterfaces/src/Muon/MuonAnalysis.cpp @@ -183,7 +183,6 @@ void MuonAnalysis::initLayout() { m_fitDataTab = new MuonAnalysisFitDataTab(m_uiForm); m_fitDataTab->init(); - m_resultTableTab = new MuonAnalysisResultTableTab(m_uiForm); connect(m_resultTableTab, SIGNAL(runPythonCode(const QString &, bool)), this, SIGNAL(runAsPythonScript(const QString &, bool))); @@ -2169,6 +2168,7 @@ void MuonAnalysis::loadFittings() { SLOT(handleGroupBox())); connect(m_uiForm.fitBrowser, SIGNAL(periodBoxClicked()), this, SLOT(handlePeriodBox())); + connect(m_dataSelector, SIGNAL(nameChanged(QString)), this, SLOT(updateNorm(QString))); m_fitDataPresenter->setOverwrite(isOverwriteEnabled()); // Set multi fit mode on/off as appropriate @@ -2557,6 +2557,10 @@ void MuonAnalysis::changeTab(int newTabIndex) { m_currentTab = newTab; } +void MuonAnalysis::updateNorm(QString name) { + m_uiForm.fitBrowser->setNormalization(name.toStdString()); +} + /** * Set up the signals and slots for auto updating the plots diff --git a/MantidQt/CustomInterfaces/src/Muon/MuonAnalysisFitDataPresenter.cpp b/MantidQt/CustomInterfaces/src/Muon/MuonAnalysisFitDataPresenter.cpp index 7e2f420d530..a7364bfd37e 100644 --- a/MantidQt/CustomInterfaces/src/Muon/MuonAnalysisFitDataPresenter.cpp +++ b/MantidQt/CustomInterfaces/src/Muon/MuonAnalysisFitDataPresenter.cpp @@ -154,6 +154,7 @@ void MuonAnalysisFitDataPresenter::doConnect() { SLOT(handleSimultaneousFitLabelChanged())); connect(dataSelector, SIGNAL(datasetIndexChanged(int)), this, SLOT(handleDatasetIndexChanged(int))); + } } @@ -378,6 +379,18 @@ void MuonAnalysisFitDataPresenter::storeNorm(std::string name) const { Mantid::API::ITableWorkspace_sptr table = boost::dynamic_pointer_cast<Mantid::API::ITableWorkspace>( Mantid::API::AnalysisDataService::Instance().retrieve("multiNorm")); + auto colName = table->getColumn("name"); + if(table->rowCount()>1){ + std::string tmp =name; + // stored with ; instead of spaces + std::replace(tmp.begin(), tmp.end(), ' ', ';'); + for (size_t j = 0; j < table->rowCount(); j++) { + if (colName->cell<std::string>(j) == tmp) {//already exists + return; + } + } + } + Mantid::API::TableRow row = table->appendRow(); std::string tmp = name; // spaces stop the string being written diff --git a/MantidQt/MantidWidgets/inc/MantidQtMantidWidgets/MuonFitDataSelector.h b/MantidQt/MantidWidgets/inc/MantidQtMantidWidgets/MuonFitDataSelector.h index 2b0a1ff363d..d2ac52e1281 100644 --- a/MantidQt/MantidWidgets/inc/MantidQtMantidWidgets/MuonFitDataSelector.h +++ b/MantidQt/MantidWidgets/inc/MantidQtMantidWidgets/MuonFitDataSelector.h @@ -105,7 +105,7 @@ public slots: void fitTypeChanged(bool state); /// Called when group/period box selection changes void checkForMultiGroupPeriodSelection(); - + void updateNormFromDropDown(int); signals: /// Edited the start or end fields void dataPropertiesChanged(); @@ -115,7 +115,7 @@ signals: void simulLabelChanged(); /// Dataset index changed void datasetIndexChanged(int index); - + void nameChanged(QString name); private: /// Set default values in some input controls void setDefaultValues(); diff --git a/MantidQt/MantidWidgets/inc/MantidQtMantidWidgets/MuonFitDataSelector.ui b/MantidQt/MantidWidgets/inc/MantidQtMantidWidgets/MuonFitDataSelector.ui index fc91bd25b66..ef20591c30b 100644 --- a/MantidQt/MantidWidgets/inc/MantidQtMantidWidgets/MuonFitDataSelector.ui +++ b/MantidQt/MantidWidgets/inc/MantidQtMantidWidgets/MuonFitDataSelector.ui @@ -7,7 +7,7 @@ <x>0</x> <y>0</y> <width>923</width> - <height>269</height> + <height>414</height> </rect> </property> <property name="windowTitle"> diff --git a/MantidQt/MantidWidgets/inc/MantidQtMantidWidgets/MuonFitPropertyBrowser.h b/MantidQt/MantidWidgets/inc/MantidQtMantidWidgets/MuonFitPropertyBrowser.h index 9256058b06f..131f32f43c2 100644 --- a/MantidQt/MantidWidgets/inc/MantidQtMantidWidgets/MuonFitPropertyBrowser.h +++ b/MantidQt/MantidWidgets/inc/MantidQtMantidWidgets/MuonFitPropertyBrowser.h @@ -117,7 +117,7 @@ public: void setAllPeriods(); void setChosenPeriods(const QString &period); void setSingleFitLabel(std::string name); - + void setNormalization(const std::string name); public slots: /// Perform the fit algorithm void fit() override; @@ -154,6 +154,8 @@ protected: void showEvent(QShowEvent *e) override; double normalization() const; void setNormalization(); + + private slots: void doubleChanged(QtProperty *prop) override; void boolChanged(QtProperty *prop) override; @@ -225,6 +227,7 @@ private: std::vector<std::string> m_groupsList; }; + std::map<std::string, double> readMultipleNormalization(); std::vector<double> readNormalization(); } // MantidQt diff --git a/MantidQt/MantidWidgets/src/MuonFitDataSelector.cpp b/MantidQt/MantidWidgets/src/MuonFitDataSelector.cpp index 4fa7b102520..010a6f3782a 100644 --- a/MantidQt/MantidWidgets/src/MuonFitDataSelector.cpp +++ b/MantidQt/MantidWidgets/src/MuonFitDataSelector.cpp @@ -63,6 +63,8 @@ void MuonFitDataSelector::setUpConnections() { SLOT(checkForMultiGroupPeriodSelection())); connect(m_ui.cbDataset, SIGNAL(currentIndexChanged(int)), this, SIGNAL(datasetIndexChanged(int))); + connect(m_ui.cbDataset, SIGNAL(currentIndexChanged(int)), this, + SLOT(updateNormFromDropDown(int))); connect(m_ui.btnNextDataset, SIGNAL(clicked()), this, SLOT(setNextDataset())); connect(m_ui.btnPrevDataset, SIGNAL(clicked()), this, SLOT(setPreviousDataset())); @@ -406,9 +408,17 @@ void MuonFitDataSelector::setDatasetNames(const QStringList &datasetNames) { // Otherwise select the first in the list. if (i == m_ui.cbDataset->count()) { m_ui.cbDataset->setCurrentIndex(0); - } + } +} +void MuonFitDataSelector::updateNormFromDropDown(int j) { + for(int i=0;i<m_ui.cbDataset->count();i++){ + if (i==j){ + auto name = m_ui.cbDataset->itemText(i); + emit nameChanged(name); + return; + } + } } - /** * Called when "previous dataset" is clicked. * Changes combobox to previous dataset, which will raise an event. @@ -431,7 +441,7 @@ void MuonFitDataSelector::setNextDataset() { const int maxIndex = m_ui.cbDataset->count() - 1; if (index < maxIndex) { m_ui.cbDataset->setCurrentIndex(index + 1); - } + } } /** diff --git a/MantidQt/MantidWidgets/src/MuonFitPropertyBrowser.cpp b/MantidQt/MantidWidgets/src/MuonFitPropertyBrowser.cpp index 6850482a353..91a565f1104 100644 --- a/MantidQt/MantidWidgets/src/MuonFitPropertyBrowser.cpp +++ b/MantidQt/MantidWidgets/src/MuonFitPropertyBrowser.cpp @@ -185,6 +185,9 @@ void MuonFitPropertyBrowser::init() { multiFitSettingsGroup->addSubProperty(m_showPeriods); m_enumManager->setEnumNames(m_showPeriods, m_showPeriodValue); + multiFitSettingsGroup->addSubProperty(m_normalization); + + /* Create editors and assign them to the managers */ createEditors(w); @@ -461,9 +464,28 @@ double MuonFitPropertyBrowser::normalization() const { return readNormalization()[0]; } void MuonFitPropertyBrowser::setNormalization() { - m_normalizationValue.clear(); - m_normalizationValue.append(QString::number(normalization())); - m_enumManager->setEnumNames(m_normalization, m_normalizationValue); + setNormalization(workspaceName()); +} +/** +* @param name :: the ws name to get normalization for +* @returns the normalization +*/ +void MuonFitPropertyBrowser::setNormalization(const std::string name) { + m_normalizationValue.clear(); + QString label; + auto norms = readMultipleNormalization(); + std::string tmp =name; + // stored with ; instead of spaces + std::replace(tmp.begin(), tmp.end(), ' ', ';'); + auto it = norms.find(tmp); + if (it == norms.end()) { + label = QString::fromStdString("N/A"); + } + else { + label = QString::number(it->second); + } + m_normalizationValue.append(label); + m_enumManager->setEnumNames(m_normalization, m_normalizationValue); } /** Called when a bool property changed @@ -657,9 +679,6 @@ void MuonFitPropertyBrowser::doTFAsymmFit() { //rescale WS: rescaleWS(norms, tmpWSNameNoRaw, -1.0); } - //********************************************************************************* - //replace with update - //********************************************************************************* updateMultipleNormalization(norms); } catch (const std::exception &e) { @@ -682,7 +701,7 @@ void MuonFitPropertyBrowser::updateMultipleNormalization(std::map<std::string, d auto it = norms.find(std::get<0>(norm)); if (it != norms.end() && it->second != std::get<1>(norm)) { //write new norm - row << it->second << std::get<0>(norm) << "Calculated"; + row << it->second << std::get<0>(norm) << "Calculated";//pass calc or est } else { //write old norm @@ -754,9 +773,6 @@ std::map<std::string, double> readMultipleNormalization() { } } - else { - g_log.error("No normalizations found to read"); - } return norm; } /** The transformation between normalized counts and asymmetry @@ -1133,10 +1149,12 @@ void MuonFitPropertyBrowser::setTFAsymmMode(bool enabled) { // Show or hide the TFAsymmetry fit if (enabled) { m_settingsGroup->property()->addSubProperty(m_normalization); + m_multiFitSettingsGroup->property()->addSubProperty(m_normalization); m_settingsGroup->property()->addSubProperty(m_keepNorm); setNormalization(); } else { m_settingsGroup->property()->removeSubProperty(m_normalization); + m_multiFitSettingsGroup->property()->removeSubProperty(m_normalization); m_settingsGroup->property()->removeSubProperty(m_keepNorm); } } -- GitLab