Skip to content
Snippets Groups Projects
Commit 265857c2 authored by Kang Yang's avatar Kang Yang
Browse files

Removed the F.CHI2DOF cut in make_bmeson_neutral_adder

parent 474cdd13
No related branches found
No related tags found
1 merge request!3202B2OC: removed the F.CHI2DOF cut in make_bmeson_neutral_adder
Pipeline #7099594 failed
......@@ -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,8 +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,
F.BPVIPCHI2(pvs) < bpvipchi2_max)
in_range(am_min_vtx, F.MASS, am_max_vtx), F.BPVIPCHI2(pvs) < bpvipchi2_max)
return ParticleCombiner(
particles,
......
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