BOSS
7.1.3
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
c
d
e
f
g
i
l
m
n
o
p
r
s
t
u
v
w
Variables
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
v
w
x
z
Typedefs
c
d
e
g
h
i
l
m
n
o
p
r
s
t
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
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 Symbols
:
a
b
c
d
e
f
g
i
k
l
m
n
o
p
r
s
t
v
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
h
i
j
k
l
m
n
p
r
s
t
u
v
w
z
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
BesMucDigi.cc
Go to the documentation of this file.
1
//---------------------------------------------------------------------------//
2
// BOOST --- BESIII Object_Oriented Simulation Tool //
3
//---------------------------------------------------------------------------//
4
//Description:
5
//Author: Youzy
6
//Created: July, 2004
7
//Modified:
8
//Comment:
9
//---------------------------------------------------------------------------//
10
// $Id: BesMucDigi.cc
11
12
#include "
BesMucDigi.hh
"
13
14
G4Allocator<BesMucDigi>
BesMucDigiAllocator
;
15
16
BesMucDigi::BesMucDigi
()
17
{
18
m_trackIndex = -99;
19
m_partId = -99;
20
m_segId = -99;
21
m_gapId = -99;
22
m_stripId = -99;
23
}
16
BesMucDigi::BesMucDigi
() {
…
}
24
25
BesMucDigi::~BesMucDigi
() {}
26
27
BesMucDigi::BesMucDigi
(
const
BesMucDigi
& right)
28
:G4VDigi()
29
{
30
m_trackIndex = right.m_trackIndex;
31
m_partId = right.m_partId;
32
m_segId = right.m_segId;
33
m_gapId = right.m_gapId;
34
m_stripId = right.m_stripId;
35
}
27
BesMucDigi::BesMucDigi
(
const
BesMucDigi
& right) {
…
}
36
37
38
const
BesMucDigi
&
BesMucDigi::operator=
(
const
BesMucDigi
& right)
39
{
40
m_trackIndex = right.m_trackIndex;
41
m_partId = right.m_partId;
42
m_segId = right.m_segId;
43
m_gapId = right.m_gapId;
44
m_stripId = right.m_stripId;
45
46
return
*
this
;
47
}
38
const
BesMucDigi
&
BesMucDigi::operator=
(
const
BesMucDigi
& right) {
…
}
48
49
50
int
BesMucDigi::operator==
(
const
BesMucDigi
& right)
const
51
{
52
return
(
this
==&right) ? 1 : 0;
53
}
50
int
BesMucDigi::operator==
(
const
BesMucDigi
& right)
const
{
…
}
54
55
void
BesMucDigi::Draw
()
56
{ }
55
void
BesMucDigi::Draw
() {
…
}
57
58
void
BesMucDigi::Print
()
59
{ }
58
void
BesMucDigi::Print
() {
…
}
60
61
BesMucDigi.hh
BesMucDigiAllocator
G4Allocator< BesMucDigi > BesMucDigiAllocator
Definition
BesMucDigi.cc:14
BesMucDigi::Draw
virtual void Draw()
Definition
BesMucDigi.cc:55
BesMucDigi::~BesMucDigi
virtual ~BesMucDigi()
Definition
BesMucDigi.cc:25
BesMucDigi::operator=
const BesMucDigi & operator=(const BesMucDigi &)
Definition
BesMucDigi.cc:38
BesMucDigi::operator==
virtual G4int operator==(const BesMucDigi &) const
Definition
BesMucDigi.cc:50
BesMucDigi::BesMucDigi
BesMucDigi()
Definition
BesMucDigi.cc:16
BesMucDigi::Print
virtual void Print()
Definition
BesMucDigi.cc:58
7.1.3
Simulation
BOOST
MucSim
MucSim-00-01-04
src
BesMucDigi.cc
Generated by
1.13.2