ROOT
6.13/01
Reference Guide
ROOT Home Page
Main Page
Tutorials
User's Classes
+
Namespaces
Namespace List
+
Namespace Members
+
All
<
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
+
Functions
<
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
+
Variables
a
b
c
e
g
k
l
p
q
s
+
Typedefs
c
d
f
g
i
l
m
o
p
q
r
s
u
x
Enumerations
+
Enumerator
b
c
k
o
s
+
All Classes
Class List
Class Index
Class Hierarchy
+
Class Members
+
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
+
Variables
a
c
d
e
f
h
i
k
l
m
n
p
r
s
t
v
w
x
y
+
Typedefs
a
b
c
d
e
f
g
i
m
p
r
s
t
v
x
y
+
Enumerations
e
y
+
Enumerator
d
k
m
n
+
Related Functions
c
f
g
h
i
k
l
m
o
s
v
+
Files
File List
+
File Members
+
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
y
+
Variables
b
c
e
f
g
i
k
m
o
p
r
s
t
v
x
y
z
+
Typedefs
e
g
h
k
m
r
s
t
u
v
Enumerations
Enumerator
+
Macros
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
Release Notes
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Modules
Pages
math
minuit2
src
MnFcn.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
10
#include "
Minuit2/MnFcn.h
"
11
#include "
Minuit2/FCNBase.h
"
12
#include "
Minuit2/MnVectorTransform.h
"
13
14
namespace
ROOT
{
15
16
namespace
Minuit2 {
17
18
19
MnFcn::~MnFcn
() {
20
// std::cout<<"Total number of calls to FCN: "<<fNumCall<<std::endl;
21
}
22
23
double
MnFcn::operator()
(
const
MnAlgebraicVector
&
v
)
const
{
24
// evaluate FCN converting from from MnAlgebraicVector to std::vector
25
fNumCall
++;
26
return
fFCN
(
MnVectorTransform
()(v));
27
}
28
29
// double MnFcn::operator()(const std::vector<double>& par) const {
30
// return fFCN(par);
31
// }
32
33
double
MnFcn::ErrorDef
()
const
{
return
fFCN
.
Up
();}
34
35
double
MnFcn::Up
()
const
{
return
fFCN
.
Up
();}
36
37
}
// namespace Minuit2
38
39
}
// namespace ROOT
ROOT::Minuit2::MnFcn::operator()
virtual double operator()(const MnAlgebraicVector &) const
Definition:
MnFcn.cxx:23
ROOT::Minuit2::FCNBase::Up
virtual double Up() const =0
Error definition of the function.
ROOT::Minuit2::MnFcn::~MnFcn
virtual ~MnFcn()
Definition:
MnFcn.cxx:19
ROOT::Minuit2::MnFcn::fNumCall
int fNumCall
Definition:
MnFcn.h:59
ROOT
Namespace for new ROOT classes and functions.
Definition:
TFoamSampler.h:19
ROOT::Minuit2::LAVector
Definition:
LAVector.h:33
ROOT::Minuit2::MnFcn::Up
double Up() const
Definition:
MnFcn.cxx:35
MnFcn.h
ROOT::Minuit2::MnVectorTransform
Definition:
MnVectorTransform.h:20
v
SVector< double, 2 > v
Definition:
Dict.h:5
FCNBase.h
ROOT::Minuit2::MnFcn::fFCN
const FCNBase & fFCN
Definition:
MnFcn.h:55
ROOT::Minuit2::MnFcn::ErrorDef
double ErrorDef() const
Definition:
MnFcn.cxx:33
MnVectorTransform.h