CGEM BOSS
6.6.5.h
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
▼
CGEM BOSS
Used Packages
Requirements
►
How to use the ERS package
Todo List
►
Namespaces
►
Classes
▼
Files
▼
File List
▼
6.6.5.h
►
Analysis
►
BesCxxPolicy
►
BesExamples
►
BesPolicy
►
Calibration
►
Cgem
►
Control
►
Database
►
DetectorDescription
►
DistBoss
►
DQA
►
Emc
►
Event
►
EventDisplay
►
EventFilter
►
EvtPreSelect
►
External
►
FileFilterAlg
►
Generator
►
InstallArea
►
LumTauAlg
►
MagneticField
►
Mdc
►
Mrpc
►
Muc
►
Reconstruction
►
RootPolicy
►
Simulation
▼
Tof
►
EstTofCaliSvc
►
tofcalgsec
►
TofCaliSvc
►
TofEnergyCalib
►
TofGeomSvc
►
TofQCorrSvc
►
TofQElecSvc
►
TofRawEvent
►
TofRecEvent
▼
TofSimSvc
▼
TofSimSvc-00-00-04
►
src
►
test
▼
TofSimSvc
►
BTofSim.h
►
ETofSim.h
►
ITofSimSvc.h
►
TofConst.h
►
TofSimSvc.h
►
Trigger
►
Utilities
►
Validation
►
File Members
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
Loading...
Searching...
No Matches
BTofSim.h
Go to the documentation of this file.
1
#ifndef BTOF_SIM_H
2
#define BTOF_SIM_H
3
4
#include "TMath.h"
5
6
class
BTofSim
{
7
public
:
8
BTofSim
() {}
9
~BTofSim
(){}
10
public
:
11
double
getGain1
()
const
{
return
m_gain*TMath::Exp(m_ratio); }
12
double
getGain2
()
const
{
return
m_gain; }
13
double
getAttenLength
()
const
{
return
m_length; }
14
15
public
:
16
void
setGain
(
double
gain ) { m_gain = gain; }
17
void
setRatio
(
double
ratio ) { m_ratio = ratio; }
18
void
setAttenLength
(
double
length
) { m_length =
length
; }
19
20
private
:
21
double
m_gain;
22
double
m_ratio;
23
double
m_length;
24
25
};
6
class
BTofSim
{
…
};
26
27
#endif
length
double length
Definition
CgemLineFit.cxx:106
BTofSim
Definition
BTofSim.h:6
BTofSim::BTofSim
BTofSim()
Definition
BTofSim.h:8
BTofSim::getGain2
double getGain2() const
Definition
BTofSim.h:12
BTofSim::setAttenLength
void setAttenLength(double length)
Definition
BTofSim.h:18
BTofSim::getAttenLength
double getAttenLength() const
Definition
BTofSim.h:13
BTofSim::getGain1
double getGain1() const
Definition
BTofSim.h:11
BTofSim::setGain
void setGain(double gain)
Definition
BTofSim.h:16
BTofSim::setRatio
void setRatio(double ratio)
Definition
BTofSim.h:17
BTofSim::~BTofSim
~BTofSim()
Definition
BTofSim.h:9
6.6.5.h
Tof
TofSimSvc
TofSimSvc-00-00-04
TofSimSvc
BTofSim.h
Generated by
1.12.0