BOSS
7.0.4
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
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
_
e
f
g
h
i
l
m
o
p
r
s
t
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
b
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 Functions
:
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
a
b
c
d
e
f
g
h
i
j
k
l
m
n
p
q
r
s
t
u
v
w
z
Enumerations
d
e
g
h
p
r
s
t
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
Calibration/CalibData/CalibData-00-01-18/CalibData/Tof/BTofSimBase.h
Go to the documentation of this file.
1
#ifndef CalibData_BTofSimBase_h
2
#define CalibData_BTofSimBase_h
3
4
#include "GaudiKernel/DataObject.h"
5
#include "CalibData/CalibModel.h"
6
#include "TMath.h"
7
8
namespace
CalibData
{
9
class
BTofSimBase
{
10
public
:
11
BTofSimBase
(){};
12
virtual
~BTofSimBase
() {}
13
14
//set the Simulation data of Tof
15
void
setGain
(
double
gain ) { m_gain = gain; }
16
void
setRatio
(
double
ratio ) { m_ratio = ratio; }
17
void
setAttenLength
(
double
length ) { m_length = length; }
18
19
//get the Simulation Data of Tof
20
double
getGain
()
const
{
return
m_gain; }
21
double
getRatio
()
const
{
return
m_ratio; }
22
double
getAttenLength
()
const
{
return
m_length; }
23
24
private
:
25
double
m_gain;
26
double
m_ratio;
27
double
m_length;
28
};
29
}
30
31
#endif
CalibData::BTofSimBase
Definition:
Calibration/CalibData/CalibData-00-01-18/CalibData/Tof/BTofSimBase.h:9
CalibData::BTofSimBase::~BTofSimBase
virtual ~BTofSimBase()
Definition:
Calibration/CalibData/CalibData-00-01-18/CalibData/Tof/BTofSimBase.h:12
CalibData::BTofSimBase::getRatio
double getRatio() const
Definition:
Calibration/CalibData/CalibData-00-01-18/CalibData/Tof/BTofSimBase.h:21
CalibData::BTofSimBase::setRatio
void setRatio(double ratio)
Definition:
Calibration/CalibData/CalibData-00-01-18/CalibData/Tof/BTofSimBase.h:16
CalibData::BTofSimBase::getAttenLength
double getAttenLength() const
Definition:
Calibration/CalibData/CalibData-00-01-18/CalibData/Tof/BTofSimBase.h:22
CalibData::BTofSimBase::setGain
void setGain(double gain)
Definition:
Calibration/CalibData/CalibData-00-01-18/CalibData/Tof/BTofSimBase.h:15
CalibData::BTofSimBase::getGain
double getGain() const
Definition:
Calibration/CalibData/CalibData-00-01-18/CalibData/Tof/BTofSimBase.h:20
CalibData::BTofSimBase::setAttenLength
void setAttenLength(double length)
Definition:
Calibration/CalibData/CalibData-00-01-18/CalibData/Tof/BTofSimBase.h:17
CalibData::BTofSimBase::BTofSimBase
BTofSimBase()
Definition:
Calibration/CalibData/CalibData-00-01-18/CalibData/Tof/BTofSimBase.h:11
CalibData
Definition:
Calibration/CalibData/CalibData-00-01-18/CalibData/CalibBase.h:27
source
Calibration
CalibData
CalibData-00-01-18
CalibData
Tof
BTofSimBase.h
Generated by
1.9.6