Skip to content

Commit 537c279

Browse files
committed
Set PythonTrackFinder back as the default track finding algorithm
1 parent c3da72c commit 537c279

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Examples/Scripts/Python/track_finding_python_only.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ def execute(self, context):
109109
self.prototracks(context, prototracks)
110110
return acts.examples.ProcessCode.SUCCESS
111111

112-
# s.addAlgorithm(PythonTrackFinder("PythonTrackFinder", acts.logging.INFO))
112+
s.addAlgorithm(PythonTrackFinder("PythonTrackFinder", acts.logging.INFO))
113113

114114
# ... or option 2: use truth values
115115
truthTrkFndAlg = acts.examples.TruthTrackFinder(
@@ -121,7 +121,7 @@ def execute(self, context):
121121
inputMeasurementSimHitsMap="measurement_simhits_map",
122122
outputProtoTracks="prototracks",
123123
)
124-
s.addAlgorithm(truthTrkFndAlg)
124+
# s.addAlgorithm(truthTrkFndAlg)
125125

126126
class PythonTrackFitter(acts.examples.IAlgorithm):
127127
def __init__(self, name, level):

0 commit comments

Comments
 (0)