Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Stripping
Manage
Activity
Members
Labels
Plan
Issues
6
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
LHCb
Stripping
Merge requests
!1620
B2OC: fix to decay descriptor in Lb2DD0pD2HHH (2 lines) and Lb2D0pK (1 line)
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
B2OC: fix to decay descriptor in Lb2DD0pD2HHH (2 lines) and Lb2D0pK (1 line)
2017-patches-b2ocsel-abertoli-210708
into
2017-patches
Overview
0
Commits
1
Pipelines
1
Changes
1
Closed
Alessandro Bertolin
requested to merge
2017-patches-b2ocsel-abertoli-210708
into
2017-patches
3 years ago
Overview
0
Commits
1
Pipelines
1
Changes
1
Expand
fix to decay descriptor in Lb2DD0pD2HHH (2 lines) and Lb2D0pK (1 line)
👍
0
👎
0
Merge request reports
Compare
2017-patches
version 1
96c1a42a
3 years ago
2017-patches (base)
and
latest version
latest version
96c1a42a
1 commit,
3 years ago
version 1
96c1a42a
607 commits,
3 years ago
1 file
+
2
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Phys/StrippingSelections/python/StrippingSelections/StrippingB2OC/Beauty2Charm_Lb2XBuilder.py
+
2
−
2
Options
@@ -1868,14 +1868,14 @@ class Lb2XBuilder(object):
'''
Make RS Lb -> D0(K3pi) p K + cc.
'''
protons_pid
=
self
.
protons_pid
kaons_pid
=
self
.
topoKaons_pid
decays
=
{
'
Lb2D0pK
'
:
[
"
[
Lambda_b0 -> D0 p+ K-
]cc
"
]}
decays
=
{
'
Lb2D0pK
'
:
[
"
Lambda_b0 -> D0 p+ K-
"
,
"
Lambda_b0 -> D0 p~- K+
"
]}
inputs
=
{
'
Lb2D0pK
'
:
self
.
d
.
k3pi_pid
+
protons_pid
+
kaons_pid
}
rs
=
makeB2XSels
(
decays
,
'
D02K3Pi
'
,
inputs
,
self
.
config
)
self
.
lines
.
append
(
ProtoLine
(
rs
,
1.0
))
def
_makeLb2DD0p
(
self
,
dname
,
d2x
):
'''
Make Lb -> D(s)- D0(K3pi) p + cc.
'''
decays
=
{
'
Lb2DD0pD2HHH
'
:
[
"
[
Lambda_b0 -> D- D0 p+
]cc
"
]}
decays
=
{
'
Lb2DD0pD2HHH
'
:
[
"
Lambda_b0 -> D- D0 p+
"
,
"
Lambda_b0 -> D+ D0 p~-
"
]}
inputs
=
{
'
Lb2DD0pD2HHH
'
:
self
.
d
.
hhh_cf_pid
+
d2x
+
self
.
protons_pid
}
rs
=
makeB2XSels
(
decays
,
dname
,
inputs
,
self
.
config
)
self
.
lines
.
append
(
ProtoLine
(
rs
,
1.0
))
Loading