File indexing completed on 2025-12-17 10:25:59
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010 #ifndef ROOT_Minuit2_MnParabolaFactory
0011 #define ROOT_Minuit2_MnParabolaFactory
0012
0013 #include "Minuit2/MnParabola.h"
0014 #include "Minuit2/MnPoint.h"
0015
0016 namespace ROOT {
0017
0018 namespace Minuit2 {
0019
0020 class MnParabolaFactory {
0021 public:
0022 MnParabola operator()(const MnPoint &, const MnPoint &, const MnPoint &) const;
0023
0024 MnParabola operator()(const MnPoint &, double, const MnPoint &) const;
0025 };
0026
0027 }
0028
0029 }
0030
0031 #endif