ROOT
Version v6.32
master
v6.34
v6.30
v6.28
v6.26
v6.24
v6.22
v6.20
v6.18
v6.16
v6.14
v6.12
v6.10
v6.08
v6.06
Reference Guide
▼
ROOT
ROOT Reference Documentation
Tutorials
►
Functional Parts
►
Namespaces
►
All Classes
▼
Files
▼
File List
►
bindings
►
core
►
documentation
►
geom
►
graf2d
►
graf3d
►
gui
►
hist
►
html
►
io
►
main
▼
math
doc
►
fftw
►
foam
►
fumili
►
genetic
►
genvector
►
mathcore
►
mathmore
►
matrix
►
minuit
▼
minuit2
doc
▼
inc
▼
Minuit2
►
ABObj.h
►
ABProd.h
►
ABSum.h
►
ABTypes.h
►
AnalyticalGradientCalculator.h
►
BFGSErrorUpdator.h
►
CombinedMinimizer.h
►
CombinedMinimumBuilder.h
►
ContoursError.h
►
DavidonErrorUpdator.h
►
ExternalInternalGradientCalculator.h
FCNAdapter.h
FCNBase.h
FCNGradAdapter.h
►
FCNGradientBase.h
FumiliBuilder.h
FumiliChi2FCN.h
FumiliErrorUpdator.h
FumiliFCNAdapter.h
FumiliFCNBase.h
►
FumiliGradientCalculator.h
FumiliMaximumLikelihoodFCN.h
FumiliMinimizer.h
FumiliStandardChi2FCN.h
FumiliStandardMaximumLikelihoodFCN.h
►
FunctionGradient.h
►
FunctionMinimizer.h
►
FunctionMinimum.h
GenericFunction.h
►
GradientCalculator.h
►
HessianGradientCalculator.h
►
InitialGradientCalculator.h
►
LaInverse.h
►
LaOuterProduct.h
►
LaProd.h
►
LaSum.h
►
LASymMatrix.h
►
LAVector.h
►
MatrixInverse.h
►
MinimumBuilder.h
►
MinimumError.h
►
MinimumErrorUpdator.h
►
MinimumParameters.h
►
MinimumSeed.h
►
MinimumSeedGenerator.h
►
MinimumState.h
►
MinosError.h
►
Minuit2Minimizer.h
►
MinuitParameter.h
►
MnApplication.h
MnConfig.h
►
MnContours.h
►
MnCovarianceSqueeze.h
►
MnCross.h
►
MnEigen.h
►
MnFcn.h
►
MnFumiliMinimize.h
►
MnFunctionCross.h
►
MnGlobalCorrelationCoeff.h
►
MnHesse.h
MnLineSearch.h
►
MnMachinePrecision.h
MnMatrix.h
►
MnMatrixfwd.h
►
MnMigrad.h
►
MnMinimize.h
►
MnMinos.h
MnParabola.h
►
MnParabolaFactory.h
MnParabolaPoint.h
►
MnParameterScan.h
►
MnPlot.h
►
MnPosDef.h
►
MnPrint.h
►
MnRefCountedPointer.h
►
MnReferenceCounter.h
►
MnScan.h
►
MnSeedGenerator.h
►
MnSimplex.h
►
MnStrategy.h
►
MnTiny.h
►
MnTraceObject.h
►
MnUserCovariance.h
►
MnUserFcn.h
►
MnUserParameters.h
►
MnUserParameterState.h
►
MnUserTransformation.h
►
MnVectorTransform.h
►
ModularFunctionMinimizer.h
►
MPIProcess.h
►
NegativeG2LineSearch.h
►
Numerical2PGradientCalculator.h
►
NumericalDerivator.h
ParametricFunction.h
►
ScanBuilder.h
►
ScanMinimizer.h
►
SimplexBuilder.h
►
SimplexMinimizer.h
►
SimplexParameters.h
►
SimplexSeedGenerator.h
►
SinParameterTransformation.h
►
SqrtLowParameterTransformation.h
►
SqrtUpParameterTransformation.h
►
StackAllocator.h
►
VariableMetricBuilder.h
►
VariableMetricEDMEstimator.h
►
VariableMetricMinimizer.h
►
VectorOuterProduct.h
►
TMinuit2TraceObject.h
►
src
►
mlp
►
physics
►
quadp
►
rtools
►
smatrix
►
splot
►
unuran
►
vecops
►
montecarlo
►
net
►
proof
►
roofit
►
sql
►
tmva
►
tree
►
tutorials
►
v6-32-00-patches
►
File Members
Release Notes
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Modules
Pages
Loading...
Searching...
No Matches
MnLineSearch.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_MnLineSearch
11
#define ROOT_Minuit2_MnLineSearch
12
13
#include "
Minuit2/MnMatrix.h
"
14
15
namespace
ROOT
{
16
17
namespace
Minuit2 {
18
19
class
MnFcn;
20
class
MinimumParameters;
21
class
MnMachinePrecision;
22
class
MnParabolaPoint;
23
24
/**
25
26
Implements a 1-dimensional minimization along a given direction
27
(i.e. quadratic interpolation) It is independent of the algorithm
28
that generates the direction vector. It brackets the 1-dimensional
29
Minimum and iterates to approach the real Minimum of the n-dimensional
30
function.
31
32
33
@author Fred James and Matthias Winkler; comments added by Andras Zsenei
34
and Lorenzo Moneta
35
36
@ingroup Minuit
37
38
*/
39
40
class
MnLineSearch
{
41
42
public
:
43
MnLineSearch
() {}
44
45
~MnLineSearch
() {}
46
47
MnParabolaPoint
operator()
(
const
MnFcn
&,
const
MinimumParameters
&,
const
MnAlgebraicVector
&,
double
,
48
const
MnMachinePrecision
&)
const
;
49
50
#ifdef USE_OTHER_LS
51
MnParabolaPoint
CubicSearch
(
const
MnFcn
&,
const
MinimumParameters
&,
const
MnAlgebraicVector
&,
double
,
double
,
52
const
MnMachinePrecision
&)
const
;
53
54
MnParabolaPoint
BrentSearch
(
const
MnFcn
&,
const
MinimumParameters
&,
const
MnAlgebraicVector
&,
double
,
double
,
55
const
MnMachinePrecision
&)
const
;
56
#endif
57
58
private
:
59
};
60
61
}
// namespace Minuit2
62
63
}
// namespace ROOT
64
65
#endif
// ROOT_Minuit2_MnLineSearch
MnMatrix.h
TRangeDynCast
ROOT::Detail::TRangeCast< T, true > TRangeDynCast
TRangeDynCast is an adapter class that allows the typed iteration through a TCollection.
Definition
TCollection.h:358
ROOT::Minuit2::LAVector
Definition
LAVector.h:32
ROOT::Minuit2::MinimumParameters
Definition
MinimumParameters.h:19
ROOT::Minuit2::MnFcn
Wrapper class to FCNBase interface used internally by Minuit.
Definition
MnFcn.h:30
ROOT::Minuit2::MnLineSearch
Implements a 1-dimensional minimization along a given direction (i.e.
Definition
MnLineSearch.h:40
ROOT::Minuit2::MnLineSearch::~MnLineSearch
~MnLineSearch()
Definition
MnLineSearch.h:45
ROOT::Minuit2::MnLineSearch::MnLineSearch
MnLineSearch()
Definition
MnLineSearch.h:43
ROOT::Minuit2::MnLineSearch::operator()
MnParabolaPoint operator()(const MnFcn &, const MinimumParameters &, const MnAlgebraicVector &, double, const MnMachinePrecision &) const
Perform a line search from position defined by the vector st along the direction step,...
Definition
MnLineSearch.cxx:46
ROOT::Minuit2::MnMachinePrecision
Sets the relative floating point (double) arithmetic precision.
Definition
MnMachinePrecision.h:32
ROOT::Minuit2::MnParabolaPoint
A point of a parabola.
Definition
MnParabolaPoint.h:36
ROOT
tbb::task_arena is an alias of tbb::interface7::task_arena, which doesn't allow to forward declare tb...
Definition
EExecutionPolicy.hxx:4
math
minuit2
inc
Minuit2
MnLineSearch.h
ROOT v6-32 - Reference Guide Generated on Thu Apr 3 2025 12:07:48 (GVA Time) using Doxygen 1.10.0