1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 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 65 66 67 68 69 70
|
// ************************************************************************************************
//
// BornAgain: simulate and fit reflection and scattering
//
//! @file GUI/View/Fit/FitSessionController.h
//! @brief Defines class FitSessionController.
//!
//! @homepage http://www.bornagainproject.org
//! @license GNU General Public License v3 or higher (see COPYING)
//! @copyright Forschungszentrum Jülich GmbH 2018
//! @authors Scientific Computing Group at MLZ (see CITATION, AUTHORS)
//
// ************************************************************************************************
#ifndef BORNAGAIN_GUI_VIEW_FIT_FITSESSIONCONTROLLER_H
#define BORNAGAIN_GUI_VIEW_FIT_FITSESSIONCONTROLLER_H
#include <QObject>
#include <memory>
class FitLog;
class FitObjectiveBuilder;
class FitProgressInfo;
class FitWorkerLauncher;
class GUIFitObserver;
class JobItem;
//! Controls all activity related to the single fitting task for JobItem.
//! Provides interaction between FitSessionWidget and fit observers.
class FitSessionController : public QObject {
Q_OBJECT
public:
FitSessionController(QObject* parent = nullptr);
~FitSessionController() override;
void setJobItem(JobItem* jobItem);
FitLog* fitLog();
signals:
void fittingStarted();
void fittingFinished();
void fittingError(const QString& message);
public slots:
void onStartFittingRequest();
void onStopFittingRequest();
void updateStartValuesFromTree();
private slots:
void onObserverUpdate();
void onFittingStarted();
void onFittingFinished();
void onFittingError(const QString& text);
void updateIterationCount(const FitProgressInfo& info);
void updateFitParameterValues(const FitProgressInfo& info);
void updateLog(const FitProgressInfo& info);
void onJobDestroyed();
private:
JobItem* m_job_item;
FitWorkerLauncher* m_run_fit_manager;
std::shared_ptr<GUIFitObserver> m_observer;
std::unique_ptr<FitLog> m_fitlog;
std::shared_ptr<FitObjectiveBuilder> m_objective_builder;
bool m_block_progress_update;
};
#endif // BORNAGAIN_GUI_VIEW_FIT_FITSESSIONCONTROLLER_H
|