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
ABTypes.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_ABTypes
11
#define ROOT_Minuit2_ABTypes
12
13
namespace
ROOT
{
14
15
namespace
Minuit2 {
16
17
class
gen
{
18
};
19
class
sym
{
20
};
21
class
vec
{
22
};
23
24
template
<
class
A,
class
B>
25
class
AlgebraicSumType
{
26
public
:
27
typedef
gen
Type
;
28
};
29
30
template
<
class
T>
31
class
AlgebraicSumType
<T, T> {
32
public
:
33
typedef
T
Type
;
34
};
35
36
template
<>
37
class
AlgebraicSumType
<
vec
,
gen
> {
38
private
:
39
typedef
gen
Type
;
40
};
41
42
template
<>
43
class
AlgebraicSumType
<
gen
,
vec
> {
44
private
:
45
typedef
gen
Type
;
46
};
47
48
template
<>
49
class
AlgebraicSumType
<
vec
,
sym
> {
50
private
:
51
typedef
gen
Type
;
52
};
53
54
template
<>
55
class
AlgebraicSumType
<
sym
,
vec
> {
56
private
:
57
typedef
gen
Type
;
58
};
59
60
//
61
62
template
<
class
A,
class
B>
63
class
AlgebraicProdType
{
64
private
:
65
typedef
gen
Type
;
66
};
67
68
template
<
class
T>
69
class
AlgebraicProdType
<T, T> {
70
private
:
71
typedef
T
Type
;
72
};
73
74
template
<>
75
class
AlgebraicProdType
<
gen
,
gen
> {
76
public
:
77
typedef
gen
Type
;
78
};
79
80
template
<>
81
class
AlgebraicProdType
<
sym
,
sym
> {
82
public
:
83
typedef
gen
Type
;
84
};
85
86
template
<>
87
class
AlgebraicProdType
<
sym
,
gen
> {
88
public
:
89
typedef
gen
Type
;
90
};
91
92
template
<>
93
class
AlgebraicProdType
<
gen
,
sym
> {
94
public
:
95
typedef
gen
Type
;
96
};
97
98
template
<>
99
class
AlgebraicProdType
<
vec
,
gen
> {
100
private
:
101
typedef
gen
Type
;
102
};
103
104
template
<>
105
class
AlgebraicProdType
<
gen
,
vec
> {
106
public
:
107
typedef
vec
Type
;
108
};
109
110
template
<>
111
class
AlgebraicProdType
<
vec
,
sym
> {
112
private
:
113
typedef
gen
Type
;
114
};
115
116
template
<>
117
class
AlgebraicProdType
<
sym
,
vec
> {
118
public
:
119
typedef
vec
Type
;
120
};
121
122
}
// namespace Minuit2
123
124
}
// namespace ROOT
125
126
#endif
// ROOT_Minuit2_ABTypes
ROOT::Minuit2::AlgebraicProdType< T, T >::Type
T Type
Definition
ABTypes.h:71
ROOT::Minuit2::AlgebraicProdType< gen, gen >::Type
gen Type
Definition
ABTypes.h:77
ROOT::Minuit2::AlgebraicProdType< gen, sym >::Type
gen Type
Definition
ABTypes.h:95
ROOT::Minuit2::AlgebraicProdType< gen, vec >::Type
vec Type
Definition
ABTypes.h:107
ROOT::Minuit2::AlgebraicProdType< sym, gen >::Type
gen Type
Definition
ABTypes.h:89
ROOT::Minuit2::AlgebraicProdType< sym, sym >::Type
gen Type
Definition
ABTypes.h:83
ROOT::Minuit2::AlgebraicProdType< sym, vec >::Type
vec Type
Definition
ABTypes.h:119
ROOT::Minuit2::AlgebraicProdType< vec, gen >::Type
gen Type
Definition
ABTypes.h:101
ROOT::Minuit2::AlgebraicProdType< vec, sym >::Type
gen Type
Definition
ABTypes.h:113
ROOT::Minuit2::AlgebraicProdType
Definition
ABTypes.h:63
ROOT::Minuit2::AlgebraicProdType::Type
gen Type
Definition
ABTypes.h:65
ROOT::Minuit2::AlgebraicSumType< T, T >::Type
T Type
Definition
ABTypes.h:33
ROOT::Minuit2::AlgebraicSumType< gen, vec >::Type
gen Type
Definition
ABTypes.h:45
ROOT::Minuit2::AlgebraicSumType< sym, vec >::Type
gen Type
Definition
ABTypes.h:57
ROOT::Minuit2::AlgebraicSumType< vec, gen >::Type
gen Type
Definition
ABTypes.h:39
ROOT::Minuit2::AlgebraicSumType< vec, sym >::Type
gen Type
Definition
ABTypes.h:51
ROOT::Minuit2::AlgebraicSumType
Definition
ABTypes.h:25
ROOT::Minuit2::AlgebraicSumType::Type
gen Type
Definition
ABTypes.h:27
ROOT::Minuit2::gen
Definition
ABTypes.h:17
ROOT::Minuit2::sym
Definition
ABTypes.h:19
ROOT::Minuit2::vec
Definition
ABTypes.h:21
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
ABTypes.h
ROOT v6-32 - Reference Guide Generated on Fri Apr 11 2025 15:20:03 (GVA Time) using Doxygen 1.10.0