Skip to content
Snippets Groups Projects

Added plots do debug hit positions

Merged Whitney Armstrong requested to merge tracking_hit_positions into master
Files
3
@@ -119,10 +119,10 @@ algorithms.append(gem_ec_reco)
@@ -119,10 +119,10 @@ algorithms.append(gem_ec_reco)
trk_hit_col = TrackingHitsCollector("trk_hit_col",
trk_hit_col = TrackingHitsCollector("trk_hit_col",
inputTrackingHits=[
inputTrackingHits=[
str(trk_b_reco.outputHitCollection),
str(trk_ec_reco.outputHitCollection),
str(vtx_b_reco.outputHitCollection),
str(vtx_b_reco.outputHitCollection),
str(vtx_ec_reco.outputHitCollection),
str(vtx_ec_reco.outputHitCollection),
 
str(trk_b_reco.outputHitCollection),
 
str(trk_ec_reco.outputHitCollection),
str(gem_ec_reco.outputHitCollection) ],
str(gem_ec_reco.outputHitCollection) ],
trackingHits="trackingHits")
trackingHits="trackingHits")
algorithms.append( trk_hit_col )
algorithms.append( trk_hit_col )
@@ -131,13 +131,15 @@ algorithms.append( trk_hit_col )
@@ -131,13 +131,15 @@ algorithms.append( trk_hit_col )
sourcelinker = TrackerSourceLinker("sourcelinker",
sourcelinker = TrackerSourceLinker("sourcelinker",
inputHitCollection=trk_hit_col.trackingHits,
inputHitCollection=trk_hit_col.trackingHits,
outputSourceLinks="TrackSourceLinks",
outputSourceLinks="TrackSourceLinks",
outputMeasurements="TrackMeasurements")
outputMeasurements="TrackMeasurements",
 
OutputLevel=DEBUG)
algorithms.append( sourcelinker )
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=DEBUG)
#OutputLevel=DEBUG)
#OutputLevel=DEBUG)
algorithms.append( truth_trk_init )
algorithms.append( truth_trk_init )
@@ -146,8 +148,8 @@ trk_find_alg = TrackFindingAlgorithm("trk_find_alg",
@@ -146,8 +148,8 @@ trk_find_alg = TrackFindingAlgorithm("trk_find_alg",
inputSourceLinks = sourcelinker.outputSourceLinks,
inputSourceLinks = sourcelinker.outputSourceLinks,
inputMeasurements = sourcelinker.outputMeasurements,
inputMeasurements = sourcelinker.outputMeasurements,
inputInitialTrackParameters= "InitTrackParams",#"InitTrackParamsFromClusters",
inputInitialTrackParameters= "InitTrackParams",#"InitTrackParamsFromClusters",
outputTrajectories="trajectories")
outputTrajectories="trajectories",
#OutputLevel=DEBUG)
OutputLevel=DEBUG)
algorithms.append( trk_find_alg )
algorithms.append( trk_find_alg )
parts_from_fit = ParticlesFromTrackFit("parts_from_fit",
parts_from_fit = ParticlesFromTrackFit("parts_from_fit",
Loading