Skip to content

Commit

Permalink
refactor: Split particle selection in Examples
Browse files Browse the repository at this point in the history
  • Loading branch information
andiwand committed Dec 9, 2024
1 parent 94ae506 commit f3d609f
Show file tree
Hide file tree
Showing 2 changed files with 129 additions and 125 deletions.
6 changes: 3 additions & 3 deletions Examples/Python/python/acts/examples/reconstruction.py
Original file line number Diff line number Diff line change
Expand Up @@ -2149,9 +2149,9 @@ def addVertexFitting(
trackParameters = converter.config.outputTrackParameters

tracks = tracks if tracks is not None else ""
inputParticles = "particles_input"
inputParticles = "particles"
selectedParticles = "particles_selected"
inputTruthVertices = "vertices_input"
inputTruthVertices = "vertices_truth"

if vertexFinder == VertexFinder.Truth:
findVertices = TruthVertexFinder(
Expand Down Expand Up @@ -2245,7 +2245,7 @@ def addSingleSeedVertexFinding(
)
s.addAlgorithm(findSingleSeedVertex)

inputParticles = "particles_input"
inputParticles = "particles"
selectedParticles = "particles_selected"

if outputDirRoot is not None:
Expand Down
Loading

0 comments on commit f3d609f

Please sign in to comment.