BOSS
7.1.2
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
▼
BOSS
Used Packages
Requirements
►
How to use the ERS package
Todo List
►
Namespaces
►
Classes
▼
Files
▼
File List
▼
7.1.2
►
Analysis
►
BesCxxPolicy
►
BesExamples
►
BesPolicy
►
Calibration
►
Control
►
Database
►
DetectorDescription
►
DistBoss
►
DQA
►
Emc
▼
Event
►
AsciiDmp
►
BesDChain
►
DecayChain
►
DstEvent
►
DstMakerAlg
►
DstReformAlg
►
DTagSetAlg
►
eformat
►
ers
►
EventModel
►
EventNavigator
►
EventTag
►
EvTimeEvent
►
EvtRecEvent
►
ExtEvent
►
GetRawETS
►
HltEvent
►
HltMakerAlg
►
IRawFile
►
LTagSetAlg
►
LumiDigi
▼
McTruth
▼
McTruth-00-03-00
►
McTruth
▼
src
DecayMode.cxx
EmcMcHit.cxx
McEvent.cxx
McKine.cxx
McParticle.cxx
McPrimaryParticle.cxx
McTrajectory.cxx
MdcMcHit.cxx
MucMcHit.cxx
TofMcHit.cxx
►
RawDataCnv
►
RawDataCnvBase
►
RawDataProviderSvc
►
RawEvent
►
RawEventReader
►
RawFile
►
RecMakerAlg
►
ReconEvent
►
RecTrackList
►
RelTable
►
RootCnvSvc
►
RootEventData
►
RootIO
►
RootRawEvtReader
►
RunEventNumberAlg
►
TagFilterSvc
►
TagSetAlg
►
TrigEvent
►
TrigMakerAlg
►
XYZTagSetAlg
►
ZddEvent
►
EventDisplay
►
EventFilter
►
EvtPreSelect
►
External
►
Generator
►
InstallArea
►
LumTauAlg
►
MagneticField
►
Mdc
►
Muc
►
OfflineEvtFilter
►
Reconstruction
►
RootPolicy
►
Simulation
►
Tof
►
Trigger
►
Utilities
►
Validation
►
File Members
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
Loading...
Searching...
No Matches
MucMcHit.cxx
Go to the documentation of this file.
1
#include "
McTruth/MucMcHit.h
"
2
3
Event::MucMcHit::MucMcHit
(
const
Identifier
&
id
,
unsigned
int
trackIndex,
double
xPosition,
4
double
yPosition,
double
zPosition,
double
px,
double
py,
5
double
pz)
6
: m_id(id), m_trackIndex(trackIndex),
7
m_xPosition(xPosition), m_yPosition(yPosition),m_zPosition(zPosition),
8
m_px(px), m_py(py),
m_pz
(pz){}
3
Event::MucMcHit::MucMcHit
(
const
Identifier
&
id
,
unsigned
int
trackIndex,
double
xPosition, {
…
}
9
10
// Get associated id
11
Identifier
Event::MucMcHit::identify
()
const
{
12
return
m_id;
13
}
11
Identifier
Event::MucMcHit::identify
()
const
{
…
}
14
15
// Get the associated track id
16
unsigned
int
Event::MucMcHit::getTrackIndex
()
const
{
17
return
m_trackIndex;
18
}
16
unsigned
int
Event::MucMcHit::getTrackIndex
()
const
{
…
}
19
20
// Get the position x
21
double
Event::MucMcHit::getPositionX
()
const
{
22
return
m_xPosition;
23
}
21
double
Event::MucMcHit::getPositionX
()
const
{
…
}
24
25
// Get the position y
26
double
Event::MucMcHit::getPositionY
()
const
{
27
return
m_yPosition;
28
}
26
double
Event::MucMcHit::getPositionY
()
const
{
…
}
29
30
// Get the position z
31
double
Event::MucMcHit::getPositionZ
()
const
{
32
return
m_zPosition;
33
}
31
double
Event::MucMcHit::getPositionZ
()
const
{
…
}
34
35
// Get momentum Px
36
double
Event::MucMcHit::getPx
()
const
{
37
return
m_px;
38
}
36
double
Event::MucMcHit::getPx
()
const
{
…
}
39
40
// Get momentum Py
41
double
Event::MucMcHit::getPy
()
const
{
42
return
m_py;
43
}
41
double
Event::MucMcHit::getPy
()
const
{
…
}
44
45
// Get momentum Pz
46
double
Event::MucMcHit::getPz
()
const
{
47
return
m_pz
;
48
}
46
double
Event::MucMcHit::getPz
()
const
{
…
}
49
m_pz
NTuple::Item< double > m_pz
Definition
MdcHistItem.h:78
MucMcHit.h
Event::MucMcHit::getPz
double getPz() const
Definition
MucMcHit.cxx:46
Event::MucMcHit::getPy
double getPy() const
Definition
MucMcHit.cxx:41
Event::MucMcHit::getTrackIndex
unsigned int getTrackIndex() const
Definition
MucMcHit.cxx:16
Event::MucMcHit::MucMcHit
MucMcHit()
Definition
MucMcHit.h:26
Event::MucMcHit::getPositionX
double getPositionX() const
Definition
MucMcHit.cxx:21
Event::MucMcHit::getPositionY
double getPositionY() const
Definition
MucMcHit.cxx:26
Event::MucMcHit::identify
Identifier identify() const
Definition
MucMcHit.cxx:11
Event::MucMcHit::getPx
double getPx() const
Definition
MucMcHit.cxx:36
Event::MucMcHit::getPositionZ
double getPositionZ() const
Definition
MucMcHit.cxx:31
Identifier
Definition
Identifier.h:20
7.1.2
Event
McTruth
McTruth-00-03-00
src
MucMcHit.cxx
Generated by
1.12.0