Skip to content
Snippets Groups Projects
Commit d86c8106 authored by Christina Agapopoulou's avatar Christina Agapopoulou
Browse files

Merge branch 'b2oc-yangk-RemoveCHI2DOF' into '2024-patches'

B2OC: removed the F.CHI2DOF cut in make_bmeson_neutral_adder

See merge request !3202
parents dd34ffd7 e2978510
No related branches found
No related tags found
5 merge requests!4232Run5: rebase, restructure run5 code, add back examples,!3376Draft: bnoc_PPbarLines_isolation,!3351Synchronize master branch with 2024-patches,!3328Draft: Synchronize master branch with 2024-patches,!3202B2OC: removed the F.CHI2DOF cut in make_bmeson_neutral_adder
Pipeline #7208878 passed with warnings
......@@ -1033,7 +1033,6 @@ def make_bmeson_neutral_adder(particles,
am_min_vtx=4700 * MeV,
am_max_vtx=5800 * MeV,
sum_pt_min=4 * GeV,
vtx_chi2pdof_max=9.,
bpvipchi2_max=9.):
combination_code = require_all(
......@@ -1041,7 +1040,7 @@ def make_bmeson_neutral_adder(particles,
F.SUM(F.PT) > sum_pt_min)
pvs = make_pvs()
vertex_code = require_all(
in_range(am_min_vtx, F.MASS, am_max_vtx), F.CHI2DOF < vtx_chi2pdof_max,
in_range(am_min_vtx, F.MASS, am_max_vtx),
F.BPVIPCHI2(pvs) < bpvipchi2_max)
return ParticleCombiner(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment