Skip to content
Snippets Groups Projects
Commit c0bc75cf authored by Gitlab CI's avatar Gitlab CI Committed by Francesca Dordei
Browse files

Fixed formatting

patch generated by https://gitlab.cern.ch/lhcb/Moore/-/jobs/20843204
parent 34c1ddd2
No related branches found
No related tags found
1 merge request!1490Add Muon pid HLT2 lines for calibration
......@@ -104,6 +104,7 @@ def make_phi(
CompositeCut=mother_code,
)
def make_pions(
particles,
pvs,
......@@ -120,8 +121,7 @@ def make_pions(
F.MINIPCHI2(pvs) > mipchi2dv_min,
F.PID_PI < dllkpi_min,
)
return (particles, F.FILTER(code))
return (particles, F.FILTER(code))
def make_dsplus(
......@@ -157,6 +157,7 @@ def make_dsplus(
CompositeCut=composite_code,
)
# @register_line_builder(all_lines)
def DsToPiPhi_PhiToMuMupTagged_Detached_Line(
name="Hlt2PID_DsToPiPhi_PhiToMuMupTagged_Detached_Line", prescale=1):
......@@ -165,7 +166,7 @@ def DsToPiPhi_PhiToMuMupTagged_Detached_Line(
probe_muons = make_probe_muons(make_long_muons(), pvs, -1)
phi = make_phi(tag_muons, probe_muons)
pions = make_pions(make_long_pions(), pvs)
dsplus = make_dsplus(phi,pions)
dsplus = make_dsplus(phi, pions)
return HltLine(
name=name,
algs=flt.pid_prefilters() + [dsplus],
......@@ -182,7 +183,7 @@ def DsToPiPhi_PhiToMuMumTagged_Detached_Line(
probe_muons = make_probe_muons(make_long_muons(), pvs, +1)
phi = make_phi(tag_muons, probe_muons)
pions = make_pions(make_long_pions(), pvs)
dsplus = make_dsplus(phi,pions)
dsplus = make_dsplus(phi, pions)
return HltLine(
name=name,
algs=flt.pid_prefilters() + [dsplus],
......
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