Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
eFFORT
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Felix Metzner
eFFORT
Commits
b6094658
Commit
b6094658
authored
5 years ago
by
Markus Prim
Browse files
Options
Downloads
Patches
Plain Diff
Predifned classes for Belle MC
parent
2dfbc3a8
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
eFFORT/BToDLNu.py
+20
-0
20 additions, 0 deletions
eFFORT/BToDLNu.py
eFFORT/BToDstarLNu.py
+23
-0
23 additions, 0 deletions
eFFORT/BToDstarLNu.py
with
43 additions
and
0 deletions
eFFORT/BToDLNu.py
+
20
−
0
View file @
b6094658
...
...
@@ -66,6 +66,26 @@ class BToDLNuCLN(BToDLNu):
return
(
self
.
G_1
*
(
1
-
8
*
rho2
*
z
+
(
51
*
rho2
-
10
)
*
z
**
2
-
(
252
*
rho2
-
84
)
*
z
**
3
))
**
2
class
BToDLNuBelle
(
BToDLNu
):
def
__init__
(
self
,
m_B
:
float
,
m_Dstar
:
float
,
V_cb
:
float
,
eta_EW
:
float
=
1.0066
,
cln_g1
=
None
,
cln_rho2
=
None
):
super
(
BToDLNuBelle
,
self
).
__init__
(
m_B
,
m_Dstar
,
V_cb
,
eta_EW
)
# CLN specifics, default is given by the Belle Evtgen parameters
self
.
G_1
=
1.074
if
cln_g1
is
None
else
cln_g1
self
.
rho2
=
1.15
if
cln_rho2
is
None
else
cln_rho2
def
G
(
self
,
w
:
float
)
->
float
:
"""
Squared Caprini, Lellouch and Neubert (CLN) form factor.
:param z:
:return:
"""
rho2
=
self
.
rho2
z
=
z_var
(
w
)
return
(
self
.
G_1
*
(
1
-
8
*
rho2
*
z
+
(
51
*
rho2
-
10
)
*
z
**
2
-
(
252
*
rho2
-
84
)
*
z
**
3
))
**
2
class
BToDLNuBGL
(
BToDLNu
):
def
__init__
(
self
,
m_B
:
float
,
m_Dstar
:
float
,
V_cb
:
float
,
eta_EW
:
float
=
1.0066
,
bgl_fplus_coefficients
=
None
):
...
...
This diff is collapsed.
Click to expand it.
eFFORT/BToDstarLNu.py
+
23
−
0
View file @
b6094658
...
...
@@ -174,6 +174,29 @@ class BToDstarLNuCLN(BToDstarLNu):
return
self
.
R2_1
+
0.11
*
(
w
-
1
)
-
0.06
*
(
w
-
1
)
**
2
class
BToDstarLNuBelle
(
BToDstarLNu
):
def
__init__
(
self
,
m_B
:
float
,
m_Dstar
:
float
,
V_cb
:
float
,
eta_EW
:
float
=
1.0066
):
super
(
BToDstarLNuBelle
,
self
).
__init__
(
m_B
,
m_Dstar
,
V_cb
,
eta_EW
)
# CLN specifics, default is given by values in https://arxiv.org/abs/1702.01521v2
self
.
h_A1_1
=
0.906
self
.
rho2
=
1.3
self
.
R1_1
=
1.18
self
.
R2_1
=
0.71
def
h_A1
(
self
,
w
):
rho2
=
self
.
rho2
_z
=
z_var
(
w
)
return
self
.
h_A1_1
*
(
1
-
8
*
rho2
*
_z
+
(
53
*
rho2
-
15
)
*
_z
**
2
-
(
231
*
rho2
-
91
)
*
_z
**
3
)
def
R1
(
self
,
w
):
return
self
.
R1_1
-
0.12
*
(
w
-
1
)
+
0.05
*
(
w
-
1
)
**
2
def
R2
(
self
,
w
):
return
self
.
R2_1
+
0.11
*
(
w
-
1
)
-
0.06
*
(
w
-
1
)
**
2
class
BToDstarLNuBGL
(
BToDstarLNu
):
def
__init__
(
self
,
m_B
:
float
,
m_Dstar
:
float
,
V_cb
:
float
,
eta_EW
:
float
=
1.0066
):
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment