BornAgain  1.19.0
Simulate and fit neutron and x-ray scattering at grazing incidence
Report.h
Go to the documentation of this file.
1 // ************************************************************************************************
2 //
3 // BornAgain: simulate and fit reflection and scattering
4 //
5 //! @file Fit/Adapter/Report.h
6 //! @brief Declares report namespace.
7 //!
8 //! @homepage http://www.bornagainproject.org
9 //! @license GNU General Public License v3 or higher (see COPYING)
10 //! @copyright Forschungszentrum Jülich GmbH 2018
11 //! @authors Scientific Computing Group at MLZ (see CITATION, AUTHORS)
12 //
13 // ************************************************************************************************
14 
15 #ifdef SWIG
16 #error no need to expose this header to Swig
17 #endif
18 
19 #ifndef USER_API
20 #ifndef BORNAGAIN_FIT_ADAPTER_REPORT_H
21 #define BORNAGAIN_FIT_ADAPTER_REPORT_H
22 
23 #include <string>
24 
25 class MinimizerAdapter;
26 
27 //! Utility functions to generate reports
28 
29 namespace mumufit::internal {
30 
31 //! Reports results of minimization in the form of multi-line string
32 std::string reportToString(const MinimizerAdapter& minimizer);
33 
34 }; // namespace mumufit::internal
35 
36 #endif // BORNAGAIN_FIT_ADAPTER_REPORT_H
37 #endif // USER_API
Abstract base class that adapts the CERN ROOT minimizer to our IMinimizer.
Utility functions to generate reports.
Definition: Report.h:29
std::string reportToString(const MinimizerAdapter &minimizer)
Reports results of minimization in the form of multi-line string.
Definition: Report.cpp:76