BOSS 7.0.7
BESIII Offline Software System
Loading...
Searching...
No Matches
McKine.cxx
Go to the documentation of this file.
1#include "McTruth/McKine.h"
2
3void McKine::setId (int id) {
4 m_id = id;
5}
6
8 return m_id;
9}
10
11void McKine::setMotherId (int motherId) {
12 m_motherId = motherId;
13}
14
16 return m_motherId;
17}
18
19void McKine::setNumDaughter (int nDaughter) {
20 m_numDaughter = nDaughter;
21}
22
24 return m_numDaughter;
25}
26
27void McKine::setDaughterIdMin (int daughterIdMin) {
28 m_daughterIdMin = daughterIdMin;
29}
30
32 return m_daughterIdMin;
33}
34
35void McKine::setDaughterIdMax (int daughterIdMax) {
36 m_daughterIdMax = daughterIdMax;
37}
38
40 return m_daughterIdMax;
41}
42
43void McKine::setParticleId (int particleId) {
44 m_particleId = particleId;
45}
46
48 return m_particleId;
49}
50
51void McKine::setCharge (int q) {
52 m_q = q;
53}
54
56 return m_q;
57}
58
59void McKine::setPt (double pt) {
60 m_pt = pt;
61}
62
63double McKine::getPt () {
64 return m_pt;
65}
66
67void McKine::setTheta0 (double theta0) {
68 m_theta0 = theta0;
69}
70
72 return m_theta0;
73}
74
75void McKine::setPhi0 (double phi0) {
76 m_phi0 = phi0;
77}
78
79double McKine::getPhi0 () {
80 return m_phi0;
81}
82
83void McKine::setD0 (double d0) {
84 m_d0 = d0;
85}
86
87double McKine::getD0 () {
88 return m_d0;
89}
90
91void McKine::setZ0 (double z0) {
92 m_z0 = z0;
93}
94
95double McKine::getZ0 () {
96 return m_z0;
97}
98
99void McKine::setXv (double xv) {
100 m_xv = xv;
101}
102
103double McKine::getXv () {
104 return m_xv;
105}
106
107void McKine::setYv (double yv) {
108 m_yv = yv;
109}
110
111double McKine::getYv () {
112 return m_yv;
113}
114
115void McKine::setZv (double zv) {
116 m_zv = zv;
117}
118
119double McKine::getZv () {
120 return m_zv;
121}
****INTEGER imax DOUBLE PRECISION m_pi *DOUBLE PRECISION m_amfin DOUBLE PRECISION m_Chfin DOUBLE PRECISION m_Xenph DOUBLE PRECISION m_sinw2 DOUBLE PRECISION m_GFermi DOUBLE PRECISION m_MfinMin DOUBLE PRECISION m_ta2 INTEGER m_out INTEGER m_KeyFSR INTEGER m_KeyQCD *COMMON c_Semalib $ !copy of input $ !CMS energy $ !beam mass $ !final mass $ !beam charge $ !final charge $ !smallest final mass $ !Z mass $ !Z width $ !EW mixing angle $ !Gmu Fermi $ alphaQED at q
Definition: KKsem.h:33
double getPt()
Definition: McKine.cxx:63
void setZv(double zv)
Definition: McKine.cxx:115
void setYv(double yv)
Definition: McKine.cxx:107
int getDaughterIdMin()
Definition: McKine.cxx:31
void setCharge(int q)
Definition: McKine.cxx:51
int getNumDaughter()
Definition: McKine.cxx:23
void setId(int id)
Definition: McKine.cxx:3
void setMotherId(int motherId)
Definition: McKine.cxx:11
void setPt(double pt)
Definition: McKine.cxx:59
double getD0()
Definition: McKine.cxx:87
int getCharge()
Definition: McKine.cxx:55
void setDaughterIdMin(int daughterIdMin)
Definition: McKine.cxx:27
void setTheta0(double theta0)
Definition: McKine.cxx:67
double getZ0()
Definition: McKine.cxx:95
void setPhi0(double phi0)
Definition: McKine.cxx:75
double getYv()
Definition: McKine.cxx:111
double getPhi0()
Definition: McKine.cxx:79
int getDaughterIdMax()
Definition: McKine.cxx:39
void setNumDaughter(int nDaughter)
Definition: McKine.cxx:19
void setXv(double xv)
Definition: McKine.cxx:99
double getZv()
Definition: McKine.cxx:119
void setZ0(double z0)
Definition: McKine.cxx:91
double getXv()
Definition: McKine.cxx:103
void setDaughterIdMax(int daughterIdMax)
Definition: McKine.cxx:35
int getId()
Definition: McKine.cxx:7
int getParticleId()
Definition: McKine.cxx:47
void setD0(double d0)
Definition: McKine.cxx:83
void setParticleId(int particleId)
Definition: McKine.cxx:43
double getTheta0()
Definition: McKine.cxx:71
int getMotherId()
Definition: McKine.cxx:15