Newer
Older
#ifndef MANTIDQTCUSTOMINTERFACES_ENGGDIFFRACTION_IENGGDIFFRACTIONVIEWQTGUI_H_
#define MANTIDQTCUSTOMINTERFACES_ENGGDIFFRACTION_IENGGDIFFRACTIONVIEWQTGUI_H_
#include "MantidQtAPI/UserSubWindow.h"
#include "MantidAPI/IPeakFunction.h"
#include "MantidQtCustomInterfaces/DllConfig.h"
#include "MantidQtCustomInterfaces/EnggDiffraction/IEnggDiffractionPresenter.h"
#include "MantidQtCustomInterfaces/EnggDiffraction/IEnggDiffractionView.h"
#include "MantidQtMantidWidgets/PeakPicker.h"
#include "ui_EnggDiffractionQtGUI.h"
#include "ui_EnggDiffractionQtTabCalib.h"
#include "ui_EnggDiffractionQtTabFocus.h"
#include "ui_EnggDiffractionQtTabPreproc.h"
#include "ui_EnggDiffractionQtTabFitting.h"
#include "ui_EnggDiffractionQtTabSettings.h"
#include <boost/scoped_ptr.hpp>
#include <qwt_plot_zoomer.h>
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
// Qt classes forward declarations
class QMutex;
namespace MantidQt {
namespace CustomInterfaces {
/**
Qt-based view of the Engineering Diffraction (EnggDiffraction)
GUI. Provides a concrete view for the graphical interface for Engg
functionality in Mantid. This view is Qt-based and it is probably the
only one that will be implemented in a foreseeable horizon. The
interface of this class is given by IEnggDiffractionView so that it
fits in the MVP (Model-View-Presenter) design of this GUI.
Copyright © 2015 ISIS Rutherford Appleton Laboratory, NScD
Oak Ridge National Laboratory & European Spallation Source
This file is part of Mantid.
Mantid is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
Mantid is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
File change history is stored at: <https://github.com/mantidproject/mantid>
Code Documentation is available at: <http://doxygen.mantidproject.org>
*/
class MANTIDQT_CUSTOMINTERFACES_DLL EnggDiffractionViewQtGUI
: public MantidQt::API::UserSubWindow,
public IEnggDiffractionView {
Q_OBJECT
public:
/// Default Constructor
EnggDiffractionViewQtGUI(QWidget *parent = 0);
/// Destructor
~EnggDiffractionViewQtGUI() override;
/// Interface name
static std::string name() { return "Engineering Diffraction"; }
/// This interface's categories.
static QString categoryInfo() { return "Diffraction"; }
void userWarning(const std::string &warn,
const std::string &description) override;
void userError(const std::string &err,
const std::string &description) override;
std::string
askNewCalibrationFilename(const std::string &suggestedFname) override;
std::string askExistingCalibFilename() override;
std::vector<std::string> logMsgs() const override { return m_logMsgs; }
std::string getRBNumber() const override;
EnggDiffCalibSettings currentCalibSettings() const override {
return m_calibSettings;
}
std::string currentInstrument() const override { return m_currentInst; }
std::string currentVanadiumNo() const override;
std::string currentCeriaNo() const override;
std::string currentCalibFile() const override;
std::vector<std::string> newVanadiumNo() const override;
std::vector<std::string> newCeriaNo() const override;
std::string outCalibFilename() const override { return m_outCalibFilename; }
int currentCropCalibBankName() const override {
return m_currentCropCalibBankName;
}
std::string currentCalibSpecNos() const override;
std::string currentCalibCustomisedBankName() const override;
void newCalibLoaded(const std::string &vanadiumNo, const std::string &ceriaNo,
const std::string &fname) override;
Federico Montesino Pouzols
committed
void writeOutCalibFile(const std::string &outFilename,
const std::vector<double> &difc,
const std::vector<double> &tzero) override;
Federico Montesino Pouzols
committed
void enableTabs(bool enable) override;
void enableCalibrateAndFocusActions(bool enable) override;
Federico Montesino Pouzols
committed
std::string focusingDir() const override;
Federico Montesino Pouzols
committed
std::vector<std::string> focusingRunNo() const override;
Federico Montesino Pouzols
committed
std::vector<std::string> focusingCroppedRunNo() const override;
Federico Montesino Pouzols
committed
std::vector<std::string> focusingTextureRunNo() const override;
Federico Montesino Pouzols
committed
std::vector<bool> focusingBanks() const override;
Federico Montesino Pouzols
committed
std::string focusingCroppedSpectrumNos() const override;
Federico Montesino Pouzols
committed
std::string focusingTextureGroupingFile() const override;
bool focusedOutWorkspace() const override;
bool plotCalibWorkspace() const override;
void resetFocus() override;
Federico Montesino Pouzols
committed
std::vector<std::string> currentPreprocRunNo() const override;
double rebinningTimeBin() const override;
size_t rebinningPulsesNumberPeriods() const override;
double rebinningPulsesTime() const override;
void setfittingRunNo(QString path);
std::string fittingPeaksData() const override;
void setDataVector(std::vector<boost::shared_ptr<QwtData>> &data,
bool focused) override;
std::vector<std::string> splitFittingDirectory(std::string &selectedfPath);
void enableMultiRun(std::string firstRun, std::string lastRun);
void addBankItems(std::vector<std::string> splittedBaseName,
QString selectedFile);
void addRunNoItem(std::vector<std::string> runNumVector, bool multiRun);
void setDefaultBank(std::vector<std::string> splittedBaseName,
QString selectedFile);
bool isDigit(std::string text);
std::string fittingRunNoFactory(std::string bank, std::string fileName,
std::string &bankDir, std::string fileDir);
void updateFittingDirVec(std::string &bankDir, std::string &focusedFile);
std::string readPeaksFile(std::string fileDir);
void dataCurvesFactory(std::vector<boost::shared_ptr<QwtData>> &data,
std::vector<QwtPlotCurve *> &dataVector, bool focused);
void setPeakPickerEnabled(bool enabled);
void setPeakPicker(const Mantid::API::IPeakFunction_const_sptr &peak);
void fittingWriteFile(const std::string &fileDir);
void plotFocusedSpectrum(const std::string &wsName) override;
void plotWaterfallSpectrum(const std::string &wsName) override;
void plotReplacingWindow(const std::string &wsName,
const std::string &spectrum,
const std::string &type) override;
void plotVanCurvesCalibOutput() override;
void plotDifcZeroCalibOutput(const std::string &pyCode) override;
bool saveFocusedOutputFiles() const override;
int currentPlotType() const override { return m_currentType; }
int currentMultiRunMode() const override { return m_currentRunMode; }
private slots:
/// for buttons, do calibrate, focus, event->histo rebin, and similar
void loadCalibrationClicked();
void calibrateClicked();
void CroppedCalibrateClicked();
void focusClicked();
Federico Montesino Pouzols
committed
void focusCroppedClicked();
void focusTextureClicked();
void focusStopClicked();
void rebinTimeClicked();
void rebinMultiperiodClicked();
// slots of the settings tab/section of the interface
void browseInputDirCalib();
void browseInputDirRaw();
void browsePixelCalibFilename();
void browseTemplateGSAS_PRM();
void browseDirFocusing();
// slots for the focusing options
void browseTextureDetGroupingFile();
void focusResetClicked();
// slots of the calibration tab/section of the interface
// slots of the general part of the interface
void instrumentChanged(int idx);
void RBNumberChanged();
// slot of the cropped calibration part of the interface
void calibspecNoChanged(int idx);
// slots of the focus part of the interface
void plotRepChanged(int idx);
// slot of the multi-run mode for focus
void multiRunModeChanged(int idx);
// slots of plot spectrum check box status
void plotFocusStatus();
// updates the cropped calib run number with new ceria
void updateCroppedCalibRun();
// enables the text field when appropriate bank name is selected
// slot of the fitting peaks per part of the interface
void browseFitFocusedRun();
void setBankIdComboBox(int idx);
void browsePeaksToFit();
void addPeakToList();
void savePeakList();
void fitClicked();
void fittingRunNoChanged();
void setBankDir(int idx);
void listViewFittingRun();
// show the standard Mantid help window with this interface's help
void openHelpWin();
private:
/// Setup the interface (tab UI)
void initLayout() override;
void doSetupGeneralWidgets();
void doSetupTabCalib();
void doSetupTabFocus();
void doSetupTabPreproc();
void doSetupTabSettings();
std::string guessGSASTemplatePath() const;
std::string guessDefaultFullCalibrationPath() const;
/// Load default interface settings for each tab, normally on startup
void readSettings();
/// save settings (before closing)
void saveSettings() const override;
// window (custom interface) close
void closeEvent(QCloseEvent *ev) override;
// path/name for the persistent settings group of this interface
const static std::string m_settingsGroup;
// here the view puts messages before notifying the presenter to show them
std::vector<std::string> m_logMsgs;
/// Interface definition with widgets for the main interface window
Ui::EnggDiffractionQtGUI m_ui;
// And its sections/tabs. Note that for compactness they're called simply
// 'tabs'
// but they could be separate dialogs, widgets, etc.
Ui::EnggDiffractionQtTabCalib m_uiTabCalib;
Federico Montesino Pouzols
committed
Ui::EnggDiffractionQtTabFocus m_uiTabFocus;
Ui::EnggDiffractionQtTabPreproc m_uiTabPreproc;
Ui::EnggDiffractionQtTabFitting m_uiTabFitting;
Ui::EnggDiffractionQtTabSettings m_uiTabSettings;
/// converts QList to a vector
std::vector<std::string> qListToVector(QStringList list,
bool validator) const;
/// instrument selected (ENGIN-X, etc.)
std::string m_currentInst;
/// User select instrument
void userSelectInstrument(const QString &prefix);
/// setting the instrument prefix ahead of the run number
void setPrefix(std::string prefix);
// current bank number used for cropped calibration
int static m_currentCropCalibBankName;
// plot data representation type selected
int static m_currentType;
// multi-run focus mode type selected
int static m_currentRunMode;
/// indentifier for fitting multi-run or single run input
bool static m_fittingMutliRunMode;
// vector holding directory of focused bank file
std::vector<std::string> static m_fitting_runno_dir_vec;
/// current calibration produced in the 'Calibration' tab
std::string m_currentCalibFilename;
/// calibration settings - from/to the 'settings' tab
EnggDiffCalibSettings m_calibSettings;
std::string m_outCalibFilename;
/// This is in principle the only settings for 'focus'
std::string m_focusDir;
/// for the 'Rebin' parameter of some Engg* algorithms
static const double g_defaultRebinWidth;
/// supported file extensions string for IPARM files (for the open
/// file dialogs)
static const std::string g_iparmExtStr;
/// supported file extensions string for the pixel (full) claibration
static const std::string g_pixelCalibExt;
/// supported/suggested file extensions for the detector groups file
/// (focusing)
static const std::string g_DetGrpExtStr;
/// Loaded focused workspace
std::vector<QwtPlotCurve *> m_focusedDataVector;
/// Loaded data curves
std::vector<QwtPlotCurve *> m_fittedDataVector;
/// Peak picker tool for fitting - only one on the plot at any given moment
MantidWidgets::PeakPicker *m_peakPicker;
/// zoom-in/zoom-out tool for fitting
QwtPlotZoomer *m_zoomTool;
/// presenter as in the model-view-presenter
boost::scoped_ptr<IEnggDiffractionPresenter> m_presenter;
};
} // namespace CustomInterfaces
} // namespace MantidQt
#endif // MANTIDQTCUSTOMINTERFACES_ENGGDIFFRACTION_IENGGDIFFRACTIONVIEWQTGUI_H_