Skip to content

Commit

Permalink
fix: Missing track selection on negative d0 (#1687)
Browse files Browse the repository at this point in the history
  • Loading branch information
paulgessinger committed Dec 3, 2022
1 parent f466e7f commit 4fad426
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CI/physmon/physmon.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@
CKFPerformanceConfig(ptMin=400.0 * u.MeV, nMeasurementsMin=6),
TrackSelectorRanges(
removeNeutral=True,
loc0=(None, 4.0 * u.mm),
loc0=(-4.0 * u.mm, 4.0 * u.mm),
pt=(500 * u.MeV, None),
),
outputDirRoot=tp,
Expand Down
Binary file modified CI/physmon/reference/performance_vertexing_seeded_hist.root
Binary file not shown.
Binary file not shown.
Binary file modified CI/physmon/reference/performance_vertexing_truth_smeared_hist.root
Binary file not shown.
7 changes: 6 additions & 1 deletion Examples/Scripts/Python/full_chain_odd.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,12 @@
trackingGeometry,
field,
CKFPerformanceConfig(ptMin=1.0 * u.GeV if ttbar_pu200 else 0.0, nMeasurementsMin=6),
TrackSelectorRanges(pt=(1.0 * u.GeV, None), absEta=(None, 3.0), removeNeutral=True),
TrackSelectorRanges(
pt=(1.0 * u.GeV, None),
absEta=(None, 3.0),
loc0=(-4.0 * u.mm, 4.0 * u.mm),
removeNeutral=True,
),
outputDirRoot=outputDir,
)

Expand Down

0 comments on commit 4fad426

Please sign in to comment.