CGEM BOSS
6.6.5.i
BESIII Offline Software System
Toggle main menu visibility
Main Page
Related Pages
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
z
Functions
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
z
Variables
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
v
w
x
z
Typedefs
b
c
d
e
g
h
i
l
m
n
o
p
r
s
t
v
Enumerations
Enumerator
a
b
c
d
e
f
i
k
l
m
n
o
p
r
s
t
u
w
x
z
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
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
Typedefs
a
b
c
d
e
f
g
h
i
m
n
p
r
s
t
v
w
Enumerations
c
d
e
f
g
h
i
k
l
m
n
p
r
s
t
v
Enumerator
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
z
Related Symbols
:
a
b
c
d
e
f
g
i
k
l
m
n
o
p
r
s
t
w
x
Files
File List
File 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
l
m
n
o
p
q
r
s
t
u
v
w
x
Variables
!
_
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
Typedefs
b
c
d
e
f
g
h
i
k
l
m
n
p
q
r
s
t
u
v
w
Enumerations
Enumerator
a
b
c
d
e
f
g
h
i
k
m
n
o
p
r
s
t
u
w
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
Loading...
Searching...
No Matches
EvtItgTwoCoeffFcn.hh
Go to the documentation of this file.
1
//--------------------------------------------------------------------------
2
//
3
//
4
// Copyright Information: See EvtGen/COPYRIGHT
5
//
6
// Environment:
7
// This software is part of the EvtGen package developed jointly
8
// for the BaBar and CLEO collaborations. If you use all or part
9
// of it, please give an appropriate acknowledgement.
10
//
11
// Module: EvtItgTwoCoeffFcn.hh
12
//
13
// Description:
14
// Class describing a function with two vectors of coefficients.
15
//
16
// Modification history:
17
//
18
// Jane Tinslay March 21, 2001 Module created
19
//
20
//------------------------------------------------------------------------
21
22
#ifndef EVTITTWOCOEFFFCN_HH
23
#define EVTITTWOCOEFFFCN_HH
24
25
#include <vector>
26
27
//-------------
28
// C Headers --
29
//-------------
30
extern
"C"
{
31
}
32
33
#include "
EvtGenModels/EvtItgAbsFunction.hh
"
34
35
class
EvtItgTwoCoeffFcn
:
public
EvtItgAbsFunction
{
36
37
public
:
38
39
EvtItgTwoCoeffFcn
(
double
(*theFunction)(
double
,
const
std::vector<double> &,
const
std::vector<double> &),
40
double
lowerRange
,
double
upperRange
,
const
std::vector<double> &coeffs1,
const
std::vector<double> &coeffs2);
41
42
virtual
~EvtItgTwoCoeffFcn
( );
43
44
virtual
void
setCoeff
(
int
,
int
,
double
);
45
virtual
double
getCoeff
(
int
,
int
);
46
47
48
protected
:
49
50
virtual
double
myFunction
(
double
x
)
const
;
51
52
private
:
53
54
// Data members
55
double (*_myFunction)(
double
x
,
const
std::vector<double> & coeffs1,
const
std::vector<double> & coeffs2);
56
57
// Note: if your class needs a copy constructor or an assignment operator,
58
// make one of the following public and implement it.
59
EvtItgTwoCoeffFcn
(
const
EvtItgTwoCoeffFcn
& );
//// Copy Constructor
60
EvtItgTwoCoeffFcn
& operator= (
const
EvtItgTwoCoeffFcn
& );
// Assignment op
61
62
std::vector<double> _coeffs1;
63
std::vector<double> _coeffs2;
64
65
};
35
class
EvtItgTwoCoeffFcn
:
public
EvtItgAbsFunction
{
…
};
66
67
#endif
// EvtITGTWOCOEFFFUNCTION_HH
x
Double_t x[10]
Definition
DataBase/tau_mode.c:57
EvtItgAbsFunction.hh
EvtItgAbsFunction
Definition
EvtItgAbsFunction.hh:34
EvtItgAbsFunction::lowerRange
double lowerRange() const
Definition
EvtItgAbsFunction.hh:52
EvtItgAbsFunction::upperRange
double upperRange() const
Definition
EvtItgAbsFunction.hh:51
EvtItgTwoCoeffFcn
Definition
EvtItgTwoCoeffFcn.hh:35
EvtItgTwoCoeffFcn::getCoeff
virtual double getCoeff(int, int)
Definition
EvtItgTwoCoeffFcn.cc:54
EvtItgTwoCoeffFcn::~EvtItgTwoCoeffFcn
virtual ~EvtItgTwoCoeffFcn()
Definition
EvtItgTwoCoeffFcn.cc:38
EvtItgTwoCoeffFcn::myFunction
virtual double myFunction(double x) const
Definition
EvtItgTwoCoeffFcn.cc:42
EvtItgTwoCoeffFcn::setCoeff
virtual void setCoeff(int, int, double)
Definition
EvtItgTwoCoeffFcn.cc:47
EvtItgTwoCoeffFcn::EvtItgTwoCoeffFcn
EvtItgTwoCoeffFcn(double(*theFunction)(double, const std::vector< double > &, const std::vector< double > &), double lowerRange, double upperRange, const std::vector< double > &coeffs1, const std::vector< double > &coeffs2)
Definition
EvtItgTwoCoeffFcn.cc:31
6.6.5.i
Generator
BesEvtGen
BesEvtGen-00-01-96-slc6tag
src
EvtGen
EvtGenModels
EvtItgTwoCoeffFcn.hh
Generated by
1.12.0