Skip to content

Commit

Permalink
fix itk seeding test
Browse files Browse the repository at this point in the history
  • Loading branch information
andiwand committed Dec 12, 2024
1 parent 9d1ed29 commit a943665
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions Examples/Python/tests/test_examples.py
Original file line number Diff line number Diff line change
Expand Up @@ -437,6 +437,16 @@ def test_itk_seeding(tmp_path, trk_geo, field, assert_root_hash):
rnd=rnd,
)

addDigiParticleSelection(
seq,
ParticleSelectorConfig(
pt=(0.9 * u.GeV, None),
eta=(-4, 4),
measurements=(9, None),
removeNeutral=True,
),
)

from acts.examples.reconstruction import (
addSeeding,
)
Expand All @@ -453,16 +463,6 @@ def test_itk_seeding(tmp_path, trk_geo, field, assert_root_hash):
outputDirRoot=str(tmp_path),
)

addDigiParticleSelection(
seq,
ParticleSelectorConfig(
pt=(0.9 * u.GeV, None),
eta=(-4, 4),
measurements=(9, None),
removeNeutral=True,
),
)

seq.run()

for fn, tn in root_files:
Expand Down

0 comments on commit a943665

Please sign in to comment.