Logo ROOT   6.30.04
Reference Guide
 All Namespaces Files Pages
Numerical2PGradientCalculator.h
Go to the documentation of this file.
1 // @(#)root/minuit2:$Id$
2 // Authors: M. Winkler, F. James, L. Moneta, A. Zsenei 2003-2005
3 
4 /**********************************************************************
5  * *
6  * Copyright (c) 2005 LCG ROOT Math team, CERN/PH-SFT *
7  * *
8  **********************************************************************/
9 
10 #ifndef ROOT_Minuit2_Numerical2PGradientCalculator
11 #define ROOT_Minuit2_Numerical2PGradientCalculator
12 
13 #include "Minuit2/MnConfig.h"
14 
16 
17 #include <vector>
18 
19 namespace ROOT {
20 
21  namespace Minuit2 {
22 
23 
24 class MnFcn;
25 class MnUserTransformation;
26 class MnMachinePrecision;
27 class MnStrategy;
28 
29 /**
30  class performing the numerical gradient calculation
31  */
32 
33 class Numerical2PGradientCalculator : public GradientCalculator {
34 
35 public:
36 
37  Numerical2PGradientCalculator(const MnFcn& fcn,
38  const MnUserTransformation& par,
39  const MnStrategy& stra) :
40  fFcn(fcn), fTransformation(par), fStrategy(stra) {}
41 
42  virtual ~Numerical2PGradientCalculator() {}
43 
44  virtual FunctionGradient operator()(const MinimumParameters&) const;
45 
46 
47 
48 
49  virtual FunctionGradient operator()(const std::vector<double>& params) const;
50 
51 
52 
53 
54  virtual FunctionGradient operator()(const MinimumParameters&,
55  const FunctionGradient&) const;
56 
57  const MnFcn& Fcn() const {return fFcn;}
58  const MnUserTransformation& Trafo() const {return fTransformation;}
59  const MnMachinePrecision& Precision() const;
60  const MnStrategy& Strategy() const {return fStrategy;}
61 
62  unsigned int Ncycle() const;
63  double StepTolerance() const;
64  double GradTolerance() const;
65 
66 private:
67 
68  const MnFcn& fFcn;
69  const MnUserTransformation& fTransformation;
70  const MnStrategy& fStrategy;
71 };
72 
73  } // namespace Minuit2
74 
75 } // namespace ROOT
76 
77 #endif // ROOT_Minuit2_Numerical2PGradientCalculator