Skip to content
Snippets Groups Projects
Commit 3b758497 authored by Innes Mackay's avatar Innes Mackay
Browse files

Tighten TRCHI2 cut on MidPT lines

parent d204d0b3
No related branches found
No related tags found
1 merge request!2314Changes to L0 PID lines
Pipeline #5858795 passed with warnings
......@@ -136,10 +136,10 @@ def L0ToPPi_LL_MidPT(name="Hlt2PID_L0ToPPi_LL_MidPT", prescale=0.01):
protons = flt.filter_long_particles(
filter_protons(make_long_protons(), pt_min=1.5 * GeV, pt_max=3 * GeV),
pvs,
trchi2_max=99999,
trchi2_max=4,
mipchi2_min=36)
pions = flt.filter_long_particles(
make_long_pions(), pvs, trchi2_max=99999, mipchi2_min=36)
make_long_pions(), pvs, trchi2_max=4, mipchi2_min=36)
l0lls = make_l0lls(protons, pions, pvs)
return HltLine(
......@@ -222,13 +222,13 @@ def L0ToPPi_DD_MidPT(name="Hlt2PID_L0ToPPi_DD_MidPT", prescale=0.01):
protons = flt.filter_down_particles(
filter_protons(make_down_protons(), pt_min=1.5 * GeV, pt_max=3 * GeV),
p_min=3.0 * GeV,
trchi2_max=99999,
trchi2_max=4,
)
pions = flt.filter_down_particles(
make_down_pions(),
p_min=3.0 * GeV,
pt_min=0.175 * GeV,
trchi2_max=99999,
trchi2_max=4,
)
l0dds = make_l0dds(protons, pions, pvs)
......
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