Skip to content
Snippets Groups Projects
Commit 5e26fad9 authored by Sylvester Joosten's avatar Sylvester Joosten
Browse files

Remove chatty output

parent b3364b3a
Branches
No related tags found
1 merge request!221Remove chatty output
...@@ -145,8 +145,7 @@ else: ...@@ -145,8 +145,7 @@ else:
trk_hit_col = TrackingHitsCollector("trk_hit_col", trk_hit_col = TrackingHitsCollector("trk_hit_col",
inputTrackingHits=input_tracking_hits, inputTrackingHits=input_tracking_hits,
trackingHits="trackingHits", trackingHits="trackingHits")
OutputLevel=VERBOSE)
algorithms.append( trk_hit_col ) algorithms.append( trk_hit_col )
# Hit Source linker # Hit Source linker
...@@ -160,8 +159,7 @@ algorithms.append( sourcelinker ) ...@@ -160,8 +159,7 @@ algorithms.append( sourcelinker )
## Track param init ## Track param init
truth_trk_init = TrackParamTruthInit("truth_trk_init", truth_trk_init = TrackParamTruthInit("truth_trk_init",
inputMCParticles="mcparticles", inputMCParticles="mcparticles",
outputInitialTrackParameters="InitTrackParams", outputInitialTrackParameters="InitTrackParams")
OutputLevel=VERBOSE)
algorithms.append( truth_trk_init ) algorithms.append( truth_trk_init )
# Tracking algorithms # Tracking algorithms
...@@ -169,8 +167,7 @@ trk_find_alg = TrackFindingAlgorithm("trk_find_alg", ...@@ -169,8 +167,7 @@ trk_find_alg = TrackFindingAlgorithm("trk_find_alg",
inputSourceLinks = sourcelinker.outputSourceLinks, inputSourceLinks = sourcelinker.outputSourceLinks,
inputMeasurements = sourcelinker.outputMeasurements, inputMeasurements = sourcelinker.outputMeasurements,
inputInitialTrackParameters= "InitTrackParams", inputInitialTrackParameters= "InitTrackParams",
outputTrajectories="trajectories", outputTrajectories="trajectories")
OutputLevel=VERBOSE)
algorithms.append( trk_find_alg ) algorithms.append( trk_find_alg )
parts_from_fit = ParticlesFromTrackFit("parts_from_fit", parts_from_fit = ParticlesFromTrackFit("parts_from_fit",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment