Page Menu
Home
HEPForge
Search
Configure Global Search
Log In
Files
F19250755
EvtItgAbsFunction.hh
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
EvtItgAbsFunction.hh
View Options
//--------------------------------------------------------------------------
//
//
// Copyright Information: See EvtGen/COPYRIGHT
//
// Environment:
// This software is part of the EvtGen package developed jointly
// for the BaBar and CLEO collaborations. If you use all or part
// of it, please give an appropriate acknowledgement.
//
// Module: EvtItgAbsFunction.hh
//
// Description:
// Abstraction of a generic function for use in integration methods elsewhere
// in this package. (Stolen and modified from the BaBar IntegrationUtils package
// - author: Phil Strother).
//
// Modification history:
//
// Jane Tinslay March 21, 2001 Module adapted for use in
// EvtGen
//
//------------------------------------------------------------------------
#ifndef EVTITGABSFUNCTION_HH
#define EVTITGABSFUNCTION_HH
//-------------
// C Headers --
//-------------
extern
"C"
{
}
class
EvtItgAbsFunction
{
public
:
// Constructors
EvtItgAbsFunction
(
double
lowerRange
,
double
upperRange
);
// Destructor
virtual
~
EvtItgAbsFunction
(
);
virtual
double
value
(
double
x
)
const
;
virtual
double
operator
()(
double
x
)
const
;
// Selectors (const)
inline
double
upperRange
()
const
{
return
_upperRange
;}
inline
double
lowerRange
()
const
{
return
_lowerRange
;}
inline
void
getRange
(
double
&
lower
,
double
&
upper
)
const
{
lower
=
_lowerRange
;
upper
=
_upperRange
;
}
virtual
void
setCoeff
(
int
,
int
,
double
)
=
0
;
virtual
double
getCoeff
(
int
,
int
)
=
0
;
protected
:
virtual
double
myFunction
(
double
x
)
const
=
0
;
void
setRange
(
double
x1
,
double
x2
)
{
_lowerRange
=
x1
;
_upperRange
=
x2
;
};
private
:
double
_upperRange
;
double
_lowerRange
;
EvtItgAbsFunction
(
const
EvtItgAbsFunction
&
);
// Copy Constructor
EvtItgAbsFunction
&
operator
=
(
const
EvtItgAbsFunction
&
);
// Assignment op
};
#endif
// EVTITGABSFUNCTION_HH
File Metadata
Details
Attached
Mime Type
text/x-c++
Expires
Tue, Sep 30, 5:44 AM (5 h, 53 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
6435232
Default Alt Text
EvtItgAbsFunction.hh (1 KB)
Attached To
Mode
rEVTGEN evtgen
Attached
Detach File
Event Timeline
Log In to Comment