1
0
mirror of https://github.com/aportelli/LatAnalyze.git synced 2025-06-18 07:17:05 +01:00

compatible with Minuit2 in ROOT

This commit is contained in:
2021-11-16 21:34:25 +00:00
parent d4704267d6
commit b4b6bd22fa
3 changed files with 37 additions and 10 deletions

View File

@ -19,6 +19,20 @@
#include <LatAnalyze/Numerical/MinuitMinimizer.hpp>
#include <LatAnalyze/includes.hpp>
// forward declaration necessary in the ROOT-based version of Minuit2
namespace ROOT
{
namespace Fit
{
class ParameterSettings;
};
};
// macros necessary in the ROOT-based version of Minuit2
#define ROOT_Math_VecTypes
#define MATHCORE_STANDALONE
#include <Minuit2/Minuit2Minimizer.h>
#include <Math/Functor.h>