Skip to content
Snippets Groups Projects
Commit 55b499a1 authored by Wuttke, Joachim's avatar Wuttke, Joachim
Browse files

new dir Fit/Suite

parent 8473e357
No related branches found
No related tags found
1 merge request!1745refactor fit dirs and fit monitor
...@@ -13,11 +13,11 @@ ...@@ -13,11 +13,11 @@
// ************************************************************************************************ // ************************************************************************************************
#include "Fit/Kernel/MinimizerFactory.h" #include "Fit/Kernel/MinimizerFactory.h"
#include "Fit/Adapter/GSLLevenbergMarquardtMinimizer.h" #include "Fit/Suite/GSLLevenbergMarquardtMinimizer.h"
#include "Fit/Adapter/GSLMultiMinimizer.h" #include "Fit/Suite/GSLMultiMinimizer.h"
#include "Fit/Adapter/GeneticMinimizer.h" #include "Fit/Suite/GeneticMinimizer.h"
#include "Fit/Adapter/Minuit2Minimizer.h" #include "Fit/Suite/Minuit2Minimizer.h"
#include "Fit/Adapter/SimAnMinimizer.h" #include "Fit/Suite/SimAnMinimizer.h"
#include <boost/format.hpp> #include <boost/format.hpp>
#include <iomanip> #include <iomanip>
#include <iostream> #include <iostream>
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
// //
// BornAgain: simulate and fit reflection and scattering // BornAgain: simulate and fit reflection and scattering
// //
//! @file Fit/Adapter/GSLLevenbergMarquardtMinimizer.cpp //! @file Fit/Suite/GSLLevenbergMarquardtMinimizer.cpp
//! @brief Implements class GSLLevenbergMarquardtMinimizer. //! @brief Implements class GSLLevenbergMarquardtMinimizer.
//! //!
//! @homepage http://www.bornagainproject.org //! @homepage http://www.bornagainproject.org
...@@ -12,8 +12,8 @@ ...@@ -12,8 +12,8 @@
// //
// ************************************************************************************************ // ************************************************************************************************
#include "Fit/Adapter/GSLLevenbergMarquardtMinimizer.h" #include "Fit/Suite/GSLLevenbergMarquardtMinimizer.h"
#include "Fit/Adapter/GSLMultiMinimizer.h" #include "Fit/Suite/GSLMultiMinimizer.h"
#include "Fit/Tools/MinimizerUtil.h" #include "Fit/Tools/MinimizerUtil.h"
#include "Fit/Tools/StringUtil.h" #include "Fit/Tools/StringUtil.h"
#include <stdexcept> #include <stdexcept>
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
// //
// BornAgain: simulate and fit reflection and scattering // BornAgain: simulate and fit reflection and scattering
// //
//! @file Fit/Adapter/GSLLevenbergMarquardtMinimizer.h //! @file Fit/Suite/GSLLevenbergMarquardtMinimizer.h
//! @brief Declares class GSLLevenbergMarquardtMinimizer. //! @brief Declares class GSLLevenbergMarquardtMinimizer.
//! //!
//! @homepage http://www.bornagainproject.org //! @homepage http://www.bornagainproject.org
...@@ -15,8 +15,8 @@ ...@@ -15,8 +15,8 @@
#ifdef SWIG #ifdef SWIG
#error no need to expose this header to Swig #error no need to expose this header to Swig
#endif // SWIG #endif // SWIG
#ifndef BORNAGAIN_FIT_ADAPTER_GSLLEVENBERGMARQUARDTMINIMIZER_H #ifndef BORNAGAIN_FIT_SUITE_GSLLEVENBERGMARQUARDTMINIMIZER_H
#define BORNAGAIN_FIT_ADAPTER_GSLLEVENBERGMARQUARDTMINIMIZER_H #define BORNAGAIN_FIT_SUITE_GSLLEVENBERGMARQUARDTMINIMIZER_H
#include "Fit/Adapter/MinimizerAdapter.h" #include "Fit/Adapter/MinimizerAdapter.h"
...@@ -62,4 +62,4 @@ private: ...@@ -62,4 +62,4 @@ private:
std::unique_ptr<ROOT::Math::GSLNLSMinimizer> m_gsl_minimizer; std::unique_ptr<ROOT::Math::GSLNLSMinimizer> m_gsl_minimizer;
}; };
#endif // BORNAGAIN_FIT_ADAPTER_GSLLEVENBERGMARQUARDTMINIMIZER_H #endif // BORNAGAIN_FIT_SUITE_GSLLEVENBERGMARQUARDTMINIMIZER_H
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
// //
// BornAgain: simulate and fit reflection and scattering // BornAgain: simulate and fit reflection and scattering
// //
//! @file Fit/Adapter/GSLMultiMinimizer.cpp //! @file Fit/Suite/GSLMultiMinimizer.cpp
//! @brief Implements class GSLMultiMinimizer. //! @brief Implements class GSLMultiMinimizer.
//! //!
//! @homepage http://www.bornagainproject.org //! @homepage http://www.bornagainproject.org
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
// //
// ************************************************************************************************ // ************************************************************************************************
#include "Fit/Adapter/GSLMultiMinimizer.h" #include "Fit/Suite/GSLMultiMinimizer.h"
#include "Fit/Tools/MinimizerUtil.h" #include "Fit/Tools/MinimizerUtil.h"
#include <string> #include <string>
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
// //
// BornAgain: simulate and fit reflection and scattering // BornAgain: simulate and fit reflection and scattering
// //
//! @file Fit/Adapter/GSLMultiMinimizer.h //! @file Fit/Suite/GSLMultiMinimizer.h
//! @brief Declares class GSLMultiMinimizer. //! @brief Declares class GSLMultiMinimizer.
//! //!
//! @homepage http://www.bornagainproject.org //! @homepage http://www.bornagainproject.org
...@@ -15,8 +15,8 @@ ...@@ -15,8 +15,8 @@
#ifdef SWIG #ifdef SWIG
#error no need to expose this header to Swig #error no need to expose this header to Swig
#endif // SWIG #endif // SWIG
#ifndef BORNAGAIN_FIT_ADAPTER_GSLMULTIMINIMIZER_H #ifndef BORNAGAIN_FIT_SUITE_GSLMULTIMINIMIZER_H
#define BORNAGAIN_FIT_ADAPTER_GSLMULTIMINIMIZER_H #define BORNAGAIN_FIT_SUITE_GSLMULTIMINIMIZER_H
#include "Fit/Adapter/MinimizerAdapter.h" #include "Fit/Adapter/MinimizerAdapter.h"
...@@ -52,4 +52,4 @@ private: ...@@ -52,4 +52,4 @@ private:
std::unique_ptr<ROOT::Math::GSLMinimizer> m_gsl_minimizer; std::unique_ptr<ROOT::Math::GSLMinimizer> m_gsl_minimizer;
}; };
#endif // BORNAGAIN_FIT_ADAPTER_GSLMULTIMINIMIZER_H #endif // BORNAGAIN_FIT_SUITE_GSLMULTIMINIMIZER_H
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
// //
// BornAgain: simulate and fit reflection and scattering // BornAgain: simulate and fit reflection and scattering
// //
//! @file Fit/Adapter/GeneticMinimizer.cpp //! @file Fit/Suite/GeneticMinimizer.cpp
//! @brief Implements class GeneticMinimizer. //! @brief Implements class GeneticMinimizer.
//! //!
//! @homepage http://www.bornagainproject.org //! @homepage http://www.bornagainproject.org
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
// //
// ************************************************************************************************ // ************************************************************************************************
#include "Fit/Adapter/GeneticMinimizer.h" #include "Fit/Suite/GeneticMinimizer.h"
#include <Math/GeneticMinimizer.h> #include <Math/GeneticMinimizer.h>
namespace { namespace {
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
// //
// BornAgain: simulate and fit reflection and scattering // BornAgain: simulate and fit reflection and scattering
// //
//! @file Fit/Adapter/GeneticMinimizer.h //! @file Fit/Suite/GeneticMinimizer.h
//! @brief Declares class GeneticMinimizer. //! @brief Declares class GeneticMinimizer.
//! //!
//! @homepage http://www.bornagainproject.org //! @homepage http://www.bornagainproject.org
...@@ -15,8 +15,8 @@ ...@@ -15,8 +15,8 @@
#ifdef SWIG #ifdef SWIG
#error no need to expose this header to Swig #error no need to expose this header to Swig
#endif // SWIG #endif // SWIG
#ifndef BORNAGAIN_FIT_ADAPTER_GENETICMINIMIZER_H #ifndef BORNAGAIN_FIT_SUITE_GENETICMINIMIZER_H
#define BORNAGAIN_FIT_ADAPTER_GENETICMINIMIZER_H #define BORNAGAIN_FIT_SUITE_GENETICMINIMIZER_H
#include "Fit/Adapter/MinimizerAdapter.h" #include "Fit/Adapter/MinimizerAdapter.h"
...@@ -69,4 +69,4 @@ private: ...@@ -69,4 +69,4 @@ private:
std::unique_ptr<ROOT::Math::GeneticMinimizer> m_genetic_minimizer; std::unique_ptr<ROOT::Math::GeneticMinimizer> m_genetic_minimizer;
}; };
#endif // BORNAGAIN_FIT_ADAPTER_GENETICMINIMIZER_H #endif // BORNAGAIN_FIT_SUITE_GENETICMINIMIZER_H
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
// //
// BornAgain: simulate and fit reflection and scattering // BornAgain: simulate and fit reflection and scattering
// //
//! @file Fit/Adapter/Minuit2Minimizer.cpp //! @file Fit/Suite/Minuit2Minimizer.cpp
//! @brief Declares class Minuit2Minimizer. //! @brief Declares class Minuit2Minimizer.
//! //!
//! @homepage http://www.bornagainproject.org //! @homepage http://www.bornagainproject.org
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
// //
// ************************************************************************************************ // ************************************************************************************************
#include "Fit/Adapter/Minuit2Minimizer.h" #include "Fit/Suite/Minuit2Minimizer.h"
#include "Fit/Tools/StringUtil.h" #include "Fit/Tools/StringUtil.h"
#include <Minuit2/Minuit2Minimizer.h> #include <Minuit2/Minuit2Minimizer.h>
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
// //
// BornAgain: simulate and fit reflection and scattering // BornAgain: simulate and fit reflection and scattering
// //
//! @file Fit/Adapter/Minuit2Minimizer.h //! @file Fit/Suite/Minuit2Minimizer.h
//! @brief Declares class Minuit2Minimizer. //! @brief Declares class Minuit2Minimizer.
//! //!
//! @homepage http://www.bornagainproject.org //! @homepage http://www.bornagainproject.org
...@@ -15,8 +15,8 @@ ...@@ -15,8 +15,8 @@
#ifdef SWIG #ifdef SWIG
#error no need to expose this header to Swig #error no need to expose this header to Swig
#endif // SWIG #endif // SWIG
#ifndef BORNAGAIN_FIT_ADAPTER_MINUIT2MINIMIZER_H #ifndef BORNAGAIN_FIT_SUITE_MINUIT2MINIMIZER_H
#define BORNAGAIN_FIT_ADAPTER_MINUIT2MINIMIZER_H #define BORNAGAIN_FIT_SUITE_MINUIT2MINIMIZER_H
#include "Fit/Adapter/MinimizerAdapter.h" #include "Fit/Adapter/MinimizerAdapter.h"
#include <memory> #include <memory>
...@@ -82,4 +82,4 @@ private: ...@@ -82,4 +82,4 @@ private:
std::unique_ptr<ROOT::Minuit2::Minuit2Minimizer> m_minuit2_minimizer; std::unique_ptr<ROOT::Minuit2::Minuit2Minimizer> m_minuit2_minimizer;
}; };
#endif // BORNAGAIN_FIT_ADAPTER_MINUIT2MINIMIZER_H #endif // BORNAGAIN_FIT_SUITE_MINUIT2MINIMIZER_H
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
// //
// BornAgain: simulate and fit reflection and scattering // BornAgain: simulate and fit reflection and scattering
// //
//! @file Fit/Adapter/SimAnMinimizer.cpp //! @file Fit/Suite/SimAnMinimizer.cpp
//! @brief Implements class SimAnMinimizer. //! @brief Implements class SimAnMinimizer.
//! //!
//! @homepage http://www.bornagainproject.org //! @homepage http://www.bornagainproject.org
...@@ -12,8 +12,8 @@ ...@@ -12,8 +12,8 @@
// //
// ************************************************************************************************ // ************************************************************************************************
#include "Fit/Adapter/SimAnMinimizer.h" #include "Fit/Suite/SimAnMinimizer.h"
#include "Fit/Adapter/GSLMultiMinimizer.h" #include "Fit/Suite/GSLMultiMinimizer.h"
#ifdef _WIN32 #ifdef _WIN32
#pragma warning(push) #pragma warning(push)
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
// //
// BornAgain: simulate and fit reflection and scattering // BornAgain: simulate and fit reflection and scattering
// //
//! @file Fit/Adapter/SimAnMinimizer.h //! @file Fit/Suite/SimAnMinimizer.h
//! @brief Declares class SimAnMinimizer. //! @brief Declares class SimAnMinimizer.
//! //!
//! @homepage http://www.bornagainproject.org //! @homepage http://www.bornagainproject.org
...@@ -15,8 +15,8 @@ ...@@ -15,8 +15,8 @@
#ifdef SWIG #ifdef SWIG
#error no need to expose this header to Swig #error no need to expose this header to Swig
#endif // SWIG #endif // SWIG
#ifndef BORNAGAIN_FIT_ADAPTER_SIMANMINIMIZER_H #ifndef BORNAGAIN_FIT_SUITE_SIMANMINIMIZER_H
#define BORNAGAIN_FIT_ADAPTER_SIMANMINIMIZER_H #define BORNAGAIN_FIT_SUITE_SIMANMINIMIZER_H
#include "Fit/Adapter/MinimizerAdapter.h" #include "Fit/Adapter/MinimizerAdapter.h"
...@@ -75,4 +75,4 @@ private: ...@@ -75,4 +75,4 @@ private:
std::unique_ptr<ROOT::Math::GSLSimAnMinimizer> m_siman_minimizer; std::unique_ptr<ROOT::Math::GSLSimAnMinimizer> m_siman_minimizer;
}; };
#endif // BORNAGAIN_FIT_ADAPTER_SIMANMINIMIZER_H #endif // BORNAGAIN_FIT_SUITE_SIMANMINIMIZER_H
...@@ -14,11 +14,11 @@ ...@@ -14,11 +14,11 @@
#include "GUI/Model/Job/MinimizerItem.h" #include "GUI/Model/Job/MinimizerItem.h"
#include "Base/Util/Assert.h" #include "Base/Util/Assert.h"
#include "Fit/Adapter/GSLLevenbergMarquardtMinimizer.h" #include "Fit/Suite/GSLLevenbergMarquardtMinimizer.h"
#include "Fit/Adapter/GSLMultiMinimizer.h" #include "Fit/Suite/GSLMultiMinimizer.h"
#include "Fit/Adapter/GeneticMinimizer.h" #include "Fit/Suite/GeneticMinimizer.h"
#include "Fit/Adapter/Minuit2Minimizer.h" #include "Fit/Suite/Minuit2Minimizer.h"
#include "Fit/Adapter/SimAnMinimizer.h" #include "Fit/Suite/SimAnMinimizer.h"
#include "GUI/Model/Job/MinimizerItemCatalog.h" #include "GUI/Model/Job/MinimizerItemCatalog.h"
#include "GUI/Support/XML/UtilXML.h" #include "GUI/Support/XML/UtilXML.h"
#include "Sim/Fitting/ObjectiveMetric.h" #include "Sim/Fitting/ObjectiveMetric.h"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment