Skip to content
Snippets Groups Projects
Commit f9371f0e authored by Wouter Deconinck's avatar Wouter Deconinck Committed by Wouter Deconinck
Browse files

Add gem to tracking

parent 71074fa8
No related branches found
No related tags found
1 merge request!168Resolve "Remove obsolete algorithms from full simulations"
...@@ -446,9 +446,19 @@ gem_ec_reco = TrackerHitReconstruction("gem_ec_digi", ...@@ -446,9 +446,19 @@ gem_ec_reco = TrackerHitReconstruction("gem_ec_digi",
outputHitCollection="GEMTrackerEndcapRecHits", outputHitCollection="GEMTrackerEndcapRecHits",
timeResolution=10) timeResolution=10)
# Tracking hit collector
trk_hit_col = TrackingHitsCollector("trk_hit_col",
inputTrackingHits=[
str(trk_b_reco.outputHitCollection),
str(trk_ec_reco.outputHitCollection),
str(vtx_b_reco.outputHitCollection),
str(vtx_ec_reco.outputHitCollection),
str(gem_ec_reco.outputHitCollection) ],
trackingHits="trackingHits")
# Hit Source linker # Hit Source linker
sourcelinker = TrackerSourcesLinker("trk_srcslnkr", sourcelinker = TrackerSourcesLinker("trk_srcslnkr",
inputHitCollections = ["VertexBarrelRecHits", "TrackerBarrelRecHits"], inputHitCollections = trk_hit_col.trackingHits,
outputSourceLinks = "TrackerSourceLinks", outputSourceLinks = "TrackerSourceLinks",
outputMeasurements = "TrackerMeasurements") outputMeasurements = "TrackerMeasurements")
...@@ -524,8 +534,11 @@ pmtreco = PhotoMultiplierReco("pmtreco", ...@@ -524,8 +534,11 @@ pmtreco = PhotoMultiplierReco("pmtreco",
# outputClusterCollection="ForwardRICHClusters") # outputClusterCollection="ForwardRICHClusters")
# Output # Output
podout.outputCommands = ["keep *", podout.outputCommands = [
"keep *Hits", "keep *",
"drop *Digi",
"keep *Reco*",
"keep *ClusterHits",
"keep *Clusters", "keep *Clusters",
"keep *Layers", "keep *Layers",
"drop mcparticles" "drop mcparticles"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment