Logo ROOT  
Reference Guide
 
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
Loading...
Searching...
No Matches
HessianGradientCalculator.cxx
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
12#include "Minuit2/MnFcn.h"
17#include "Minuit2/MnStrategy.h"
18#include "Minuit2/MnPrint.h"
19
20#include "./MPIProcess.h"
21
22#include <cmath>
23#include <cassert>
24
25namespace ROOT {
26
27namespace Minuit2 {
28
30{
31 // use initial gradient as starting point
33 FunctionGradient gra = gc(par);
34
35 return (*this)(par, gra);
36}
37
39operator()(const MinimumParameters &par, const FunctionGradient &Gradient) const
40{
41 // interface of the base class. Use DeltaGradient for op.
42 std::pair<FunctionGradient, MnAlgebraicVector> mypair = DeltaGradient(par, Gradient);
43
44 return mypair.first;
45}
46
48{
49 // return the precision
50 return fTransformation.Precision();
51}
52
54{
55 // return number of calculation cycles (defined in strategy)
56 return Strategy().HessianGradientNCycles();
57}
58
59std::pair<FunctionGradient, MnAlgebraicVector>
61{
62 // calculate gradient for Hessian
63 assert(par.IsValid());
64
65 MnPrint print("HessianGradientCalculator");
66
67 MnAlgebraicVector x = par.Vec();
68 MnAlgebraicVector grd = Gradient.Grad();
69 const MnAlgebraicVector &g2 = Gradient.G2();
70 // const MnAlgebraicVector& gstep = Gradient.Gstep();
71 // update also gradient step sizes
72 MnAlgebraicVector gstep = Gradient.Gstep();
73
74 double fcnmin = par.Fval();
75 // std::cout<<"fval: "<<fcnmin<<std::endl;
76
77 double dfmin = 4. * Precision().Eps2() * (fabs(fcnmin) + Fcn().Up());
78
79 unsigned int n = x.size();
81
83 // initial starting values
84 unsigned int startElementIndex = mpiproc.StartElementIndex();
85 unsigned int endElementIndex = mpiproc.EndElementIndex();
86
87 for (unsigned int i = startElementIndex; i < endElementIndex; i++) {
88 double xtf = x(i);
89 double dmin = 4. * Precision().Eps2() * (xtf + Precision().Eps2());
90 double epspri = Precision().Eps2() + fabs(grd(i) * Precision().Eps2());
91 double optstp = sqrt(dfmin / (fabs(g2(i)) + epspri));
92 double d = 0.2 * fabs(gstep(i));
93 if (d > optstp)
94 d = optstp;
95 if (d < dmin)
96 d = dmin;
97 double chgold = 10000.;
98 double dgmin = 0.;
99 double grdold = 0.;
100 double grdnew = 0.;
101 for (unsigned int j = 0; j < Ncycle(); j++) {
102 x(i) = xtf + d;
103 double fs1 = Fcn()(x);
104 x(i) = xtf - d;
105 double fs2 = Fcn()(x);
106 x(i) = xtf;
107 // double sag = 0.5*(fs1+fs2-2.*fcnmin);
108 // LM: should I calculate also here second derivatives ???
109
110 grdold = grd(i);
111 grdnew = (fs1 - fs2) / (2. * d);
112 dgmin = Precision().Eps() * (std::fabs(fs1) + std::fabs(fs2)) / d;
113 // if(fabs(grdnew) < Precision().Eps()) break;
114 if (grdnew == 0)
115 break;
116 double change = fabs((grdold - grdnew) / grdnew);
117 if (change > chgold && j > 1)
118 break;
119 chgold = change;
120 grd(i) = grdnew;
121 // LM : update also the step sizes
122 gstep(i) = d;
123
124 if (change < 0.05)
125 break;
126 if (fabs(grdold - grdnew) < dgmin)
127 break;
128 if (d < dmin)
129 break;
130 d *= 0.2;
131 }
132
133 dgrd(i) = std::max(dgmin, std::fabs(grdold - grdnew));
134
135 print.Debug("HGC Param :", i, "\t new g1 =", grd(i), "gstep =", d, "dgrd =", dgrd(i));
136 }
137
138 mpiproc.SyncVector(grd);
139 mpiproc.SyncVector(gstep);
140 mpiproc.SyncVector(dgrd);
141
142 return std::pair<FunctionGradient, MnAlgebraicVector>(FunctionGradient(grd, g2, gstep), dgrd);
143}
144
145} // namespace Minuit2
146
147} // namespace ROOT
#define d(i)
Definition RSha256.hxx:102
ROOT::Detail::TRangeCast< T, true > TRangeDynCast
TRangeDynCast is an adapter class that allows the typed iteration through a TCollection.
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void gc
FunctionGradient operator()(const MinimumParameters &) const override
std::pair< FunctionGradient, MnAlgebraicVector > DeltaGradient(const MinimumParameters &, const FunctionGradient &) const
Class to calculate an initial estimate of the gradient.
const MnAlgebraicVector & Vec() const
Sets the relative floating point (double) arithmetic precision.
void Debug(const Ts &... args)
Definition MnPrint.h:135
Double_t x[n]
Definition legend1.C:17
const Int_t n
Definition legend1.C:16
tbb::task_arena is an alias of tbb::interface7::task_arena, which doesn't allow to forward declare tb...