Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
andiwand committed Mar 19, 2024
1 parent 4a95904 commit d2b9b80
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Examples/Python/python/acts/examples/reconstruction.py
Original file line number Diff line number Diff line change
Expand Up @@ -1583,12 +1583,13 @@ def addExaTrkX(
findingAlg = acts.examples.TrackFindingAlgorithmExaTrkX(
level=customLogLevel(),
inputSpacePoints="spacepoints",
outputProtoTracks="prototracks",
outputProtoTracks="exatrkx_prototracks",
graphConstructor=graphConstructor,
edgeClassifiers=edgeClassifiers,
trackBuilder=trackBuilder,
)
s.addAlgorithm(findingAlg)
s.addWhiteboardAlias("prototracks", findingAlg.config.outputProtoTracks)

matchAlg = acts.examples.ProtoTrackTruthMatcher(
level=customLogLevel(),
Expand All @@ -1611,7 +1612,7 @@ def addExaTrkX(
s.addWriter(
acts.examples.TrackFinderPerformanceWriter(
level=customLogLevel(),
inputProtoTracks=findingAlg.outputProtoTracks,
inputProtoTracks=findingAlg.config.outputProtoTracks,
inputParticles="particles_initial", # the original selected particles after digitization
inputMeasurementParticlesMap="measurement_particles_map",
inputProtoTrackParticleMatching=matchAlg.config.outputProtoTrackParticleMatching,
Expand Down

0 comments on commit d2b9b80

Please sign in to comment.