Back to home page

EIC code displayed by LXR

 
 

    


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

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_SimplexSeedGenerator
0011 #define ROOT_Minuit2_SimplexSeedGenerator
0012 
0013 #include "Minuit2/MinimumSeedGenerator.h"
0014 
0015 namespace ROOT {
0016 
0017 namespace Minuit2 {
0018 
0019 class MinimumSeed;
0020 class MnFcn;
0021 class MnUserParameterState;
0022 class MnStrategy;
0023 
0024 /**
0025    generate Simplex starting point (state)
0026  */
0027 class SimplexSeedGenerator : public MinimumSeedGenerator {
0028 public:
0029    MinimumSeed operator()(const MnFcn &, const GradientCalculator &, const MnUserParameterState &,
0030                           const MnStrategy &) const override;
0031 };
0032 
0033 } // namespace Minuit2
0034 
0035 } // namespace ROOT
0036 
0037 #endif // ROOT_Minuit2_SimplexSeedGenerator