Newer
Older
#ifndef MANTIDQTCUSTOMINTERFACES_ENGGDIFFRACTION_ENGGDIFFRACTIONPRESENTER_H_
#define MANTIDQTCUSTOMINTERFACES_ENGGDIFFRACTION_ENGGDIFFRACTIONPRESENTER_H_
Federico Montesino Pouzols
committed
#include "MantidAPI/ITableWorkspace_fwd.h"
#include "MantidAPI/MatrixWorkspace_fwd.h"
Federico Montesino Pouzols
committed
#include "MantidQtCustomInterfaces/DllConfig.h"
#include "MantidQtCustomInterfaces/EnggDiffraction/IEnggDiffractionPresenter.h"
#include "MantidQtCustomInterfaces/EnggDiffraction/IEnggDiffractionView.h"
// #include "MantidQtCustomInterfaces/EnggDiffraction/EnggDiffractionModel.h"
#include <boost/scoped_ptr.hpp>
#include <Poco/Path.h>
Federico Montesino Pouzols
committed
#include <QObject>
class QThread;
namespace MantidQt {
namespace CustomInterfaces {
/**
Presenter for the Enggineering Diffraction GUI (presenter as in the
MVP Model-View-Presenter pattern). In principle, in a strict MVP
setup, signals from the model should always be handled through this
presenter and never go directly to the view, and viceversa.
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>
*/
// needs to be dll-exported for the tests
Federico Montesino Pouzols
committed
class MANTIDQT_CUSTOMINTERFACES_DLL EnggDiffractionPresenter
: public QObject,
public IEnggDiffractionPresenter {
Federico Montesino Pouzols
committed
// Q_OBJECT for 'connect' with thread/worker
Q_OBJECT
public:
/// Default constructor - normally used from the concrete view
EnggDiffractionPresenter(IEnggDiffractionView *view);
virtual ~EnggDiffractionPresenter();
virtual void notify(IEnggDiffractionPresenter::Notification notif);
/// the calibration hard work that a worker / thread will run
Federico Montesino Pouzols
committed
void doNewCalibration(const std::string &outFilename,
const std::string &vanNo, const std::string &ceriaNo);
/// the focusing hard work that a worker / thread will run
Federico Montesino Pouzols
committed
void doFocusRun(const std::string &dir,
const std::vector<std::string> &outFilenames,
const std::string &runNo, const std::vector<bool> &banks,
const std::string &specNos, const std::string &dgFile);
protected:
void initialize();
/// clean shut down of model, view, etc.
void cleanup();
void processStart();
void processLoadExistingCalib();
void processCalcCalib();
Federico Montesino Pouzols
committed
void processFocusBasic();
void processFocusCropped();
void processFocusTexture();
void processResetFocus();
void processLogMsg();
void processInstChange();
void processRBNumberChange();
void processShutDown();
Federico Montesino Pouzols
committed
protected slots:
void calibrationFinished();
void focusingFinished();
Federico Montesino Pouzols
committed
bool validateRBNumber(const std::string &rbn) const;
/// @name Calibration related private methods
//@{
void inputChecksBeforeCalibrate(const std::string &newVanNo,
const std::string &newCeriaNo);
std::string outputCalibFilename(const std::string &vanNo,
const std::string &ceriaNo);
void parseCalibrateFilename(const std::string &path, std::string &instName,
std::string &vanNo, std::string &ceriaNo);
// this may need to be mocked up in tests
virtual void startAsyncCalibWorker(const std::string &outFilename,
const std::string &vanNo,
const std::string &ceriaNo);
Federico Montesino Pouzols
committed
void doCalib(const EnggDiffCalibSettings &cs, const std::string &vanNo,
const std::string &ceriaNo, const std::string &outFilename);
std::string buildCalibrateSuggestedFilename(const std::string &vanNo,
const std::string &ceriaNo) const;
//@}
/// @name Focusing related private methods
//@{
/// this may also need to be mocked up in tests
void startFocusing(const std::string &runNo, const std::vector<bool> &banks,
const std::string &specNos = "",
const std::string &dgFile = "");
Federico Montesino Pouzols
committed
void startAsyncFocusWorker(const std::string &dir,
const std::vector<std::string> &outFilenames,
const std::string &runNo,
const std::vector<bool> &banks,
const std::string &specNos,
const std::string &dgFile);
Federico Montesino Pouzols
committed
void inputChecksBeforeFocusBasic(const std::string &runNo,
const std::vector<bool> &banks);
void inputChecksBeforeFocusCropped(const std::string &runNo,
const std::vector<bool> &banks,
const std::string &specNos);
Federico Montesino Pouzols
committed
void inputChecksBeforeFocusTexture(const std::string &runNo,
const std::string &dgfile);
void inputChecksBeforeFocus();
void inputChecksBanks(const std::vector<bool> &banks);
std::vector<std::string> outputFocusFilenames(const std::string &runNo,
const std::vector<bool> &banks);
std::string outputFocusCroppedFilename(const std::string &runNo);
std::vector<std::string>
outputFocusTextureFilenames(const std::string &runNo,
const std::vector<size_t> &bankIDs);
void loadDetectorGroupingCSV(const std::string &dgFile,
std::vector<size_t> &bankIDs,
std::vector<std::string> &specs);
void doFocusing(const EnggDiffCalibSettings &cs,
const std::string &fullFilename, const std::string &runNo,
size_t bank, const std::string &specNos,
const std::string &dgFile);
void loadOrCalcVanadiumWorkspaces(
const std::string &vanNo, const std::string &inputDirCalib,
Mantid::API::ITableWorkspace_sptr &vanIntegWS,
Mantid::API::MatrixWorkspace_sptr &vanCurvesWS, bool forceRecalc);
void findPrecalcVanadiumCorrFilenames(const std::string &vanNo,
const std::string &inputDirCalib,
std::string &preIntegFilename,
std::string &preCurvesFilename,
bool &found);
void
Federico Montesino Pouzols
committed
loadVanadiumPrecalcWorkspaces(const std::string &preIntegFilename,
const std::string &preCurvesFilename,
Mantid::API::ITableWorkspace_sptr &vanIntegWS,
Mantid::API::MatrixWorkspace_sptr &vanCurvesWS);
void calcVanadiumWorkspaces(const std::string &vanNo,
Federico Montesino Pouzols
committed
Mantid::API::ITableWorkspace_sptr &vanIntegWS,
Mantid::API::MatrixWorkspace_sptr &vanCurvesWS);
// plots workspace according to the user selection
void plotFocusedWorkspace(std::string outWSName, std::string bank);
// algorithms to save the generated workspace
void saveGSS(std::string inputWorkspace, std::string bank, std::string runNo);
void saveFocusedXYE(std::string inputWorkspace, std::string bank,
std::string runNo);
void saveOpenGenie(std::string inputWorkspace, std::string specNums,
std::string bank, std::string runNo);
// generates the required file name of the output files
std::string outFileNameFactory(std::string inputWorkspace, std::string runNo,
std::string bank, std::string format);
// generates a directory if not found and handles the path
/// string to use for ENGINX file names (as a prefix, etc.)
const static std::string g_enginxStr;
/// whether to allow users to give the output calibration filename
const static bool g_askUserCalibFilename;
// name of the workspace with the vanadium integration (of spectra)
static const std::string g_vanIntegrationWSName;
Federico Montesino Pouzols
committed
QThread *m_workerThread;
/// true if the last calibration completed successfully
bool m_calibFinishedOK;
/// true if the last focusing completed successfully
bool m_focusFinishedOK;
Federico Montesino Pouzols
committed
/// Counter for the cropped output files
static int g_croppedCounter;
/// Associated view for this presenter (MVP pattern)
IEnggDiffractionView *const m_view;
/// Associated model for this presenter (MVP pattern)
// const boost::scoped_ptr<EnggDiffractionModel> m_model;
};
} // namespace CustomInterfaces
} // namespace MantidQt
Federico Montesino Pouzols
committed
#endif // MANTIDQTCUSTOMINTERFACES_ENGGDIFFRACTION_ENGGDIFFRACTIONPRESENTER_H_