Loading [MathJax]/extensions/tex2jax.js
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
foam
inc
TFoamIntegrand.h
Go to the documentation of this file.
1
// @(#)root/foam:$Id$
2
// Author: S. Jadach <mailto:Stanislaw.jadach@ifj.edu.pl>, P.Sawicki <mailto:Pawel.Sawicki@ifj.edu.pl>
3
4
#ifndef ROOT_TFoamIntegrand
5
#define ROOT_TFoamIntegrand
6
7
//_________________________________________
8
// Class TFoamIntegrand
9
// =====================
10
// Abstract class representing n-dimensional real positive integrand function
11
12
#include "TObject.h"
13
14
class
TFoamIntegrand
:
public
TObject {
15
public
:
16
TFoamIntegrand
() { };
17
virtual
~TFoamIntegrand
() { };
18
virtual
Double_t
Density
(Int_t ndim, Double_t *) = 0;
19
20
ClassDef(
TFoamIntegrand
,1);
//n-dimensional real positive integrand of FOAM
21
};
22
23
#endif
TFoamIntegrand::~TFoamIntegrand
virtual ~TFoamIntegrand()
Definition:
TFoamIntegrand.h:17
TFoamIntegrand
Definition:
TFoamIntegrand.h:14
TFoamIntegrand::TFoamIntegrand
TFoamIntegrand()
Definition:
TFoamIntegrand.h:16
TFoamIntegrand::Density
virtual Double_t Density(Int_t ndim, Double_t *)=0