Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-09-15 09:11:25

0001 // @(#)root/minuit2:$Id$
0002 // Authors: M. Winkler, F. James, L. Moneta, A. Zsenei   2003-2005
0003 
0004 /**********************************************************************
0005  *                                                                    *
0006  * Copyright (c) 2005 LCG ROOT Math team,  CERN/PH-SFT                *
0007  *                                                                    *
0008  **********************************************************************/
0009 
0010 #ifndef ROOT_Minuit2_MnParabolaFactory
0011 #define ROOT_Minuit2_MnParabolaFactory
0012 
0013 namespace ROOT {
0014 
0015 namespace Minuit2 {
0016 
0017 class MnParabola;
0018 class MnParabolaPoint;
0019 
0020 class MnParabolaFactory {
0021 public:
0022    MnParabola operator()(const MnParabolaPoint &, const MnParabolaPoint &, const MnParabolaPoint &) const;
0023 
0024    MnParabola operator()(const MnParabolaPoint &, double, const MnParabolaPoint &) const;
0025 };
0026 
0027 } // namespace Minuit2
0028 
0029 } // namespace ROOT
0030 
0031 #endif // ROOT_Minuit2_MnParabolaFactory