Skip to content
Snippets Groups Projects
Commit 38d6226d authored by Whitney Armstrong's avatar Whitney Armstrong
Browse files

modified: options/tracker_reconstruction.py

parent f34f6b4a
No related branches found
No related tags found
1 merge request!28Updating options file.
This commit is part of merge request !28. Comments created here will be created in the context of that merge request.
...@@ -95,6 +95,7 @@ simple_cluster = SimpleClustering("simple_cluster", ...@@ -95,6 +95,7 @@ simple_cluster = SimpleClustering("simple_cluster",
trk_barrel_reco = TrackerHitReconstruction("trk_barrel_reco", trk_barrel_reco = TrackerHitReconstruction("trk_barrel_reco",
inputHitCollection="SiTrackerBarrelRawHits", inputHitCollection="SiTrackerBarrelRawHits",
outputHitCollection="TrackerBarrelRecHits") outputHitCollection="TrackerBarrelRecHits")
trk_endcap_reco = TrackerHitReconstruction("trk_endcap_reco", trk_endcap_reco = TrackerHitReconstruction("trk_endcap_reco",
inputHitCollection="SiTrackerEndcapRawHits", inputHitCollection="SiTrackerEndcapRawHits",
outputHitCollection="TrackerEndcapRecHits") outputHitCollection="TrackerEndcapRecHits")
...@@ -112,7 +113,8 @@ sourcelinker = TrackerSourceLinker("trk_srclinker", ...@@ -112,7 +113,8 @@ sourcelinker = TrackerSourceLinker("trk_srclinker",
trk_hits_srclnkr = Tracker2SourceLinker("trk_hits_srclnkr", trk_hits_srclnkr = Tracker2SourceLinker("trk_hits_srclnkr",
TrackerBarrelHits="TrackerBarrelRecHits", TrackerBarrelHits="TrackerBarrelRecHits",
TrackerEndcapHits="TrackerEndcapRecHits", TrackerEndcapHits="TrackerEndcapRecHits",
outputSourceLinks="BarrelSourceLinks", outputMeasurements="lnker2Measurements",
outputSourceLinks="lnker2Links",
OutputLevel=DEBUG) OutputLevel=DEBUG)
## Track param init ## Track param init
...@@ -135,7 +137,8 @@ clust_trk_init = TrackParamClusterInit("clust_trk_init", ...@@ -135,7 +137,8 @@ clust_trk_init = TrackParamClusterInit("clust_trk_init",
# Tracking algorithms # Tracking algorithms
trk_find_alg = TrackFindingAlgorithm("trk_find_alg", trk_find_alg = TrackFindingAlgorithm("trk_find_alg",
inputSourceLinks="BarrelSourceLinks", inputSourceLinks = sourcelinker.outputSourceLinks,
inputMeasurements = sourcelinker.outputMeasurements,
inputInitialTrackParameters= "InitTrackParams",#"InitTrackParamsFromClusters", inputInitialTrackParameters= "InitTrackParams",#"InitTrackParamsFromClusters",
outputTrajectories="trajectories", outputTrajectories="trajectories",
OutputLevel=DEBUG) OutputLevel=DEBUG)
...@@ -146,7 +149,8 @@ parts_from_fit = ParticlesFromTrackFit("parts_from_fit", ...@@ -146,7 +149,8 @@ parts_from_fit = ParticlesFromTrackFit("parts_from_fit",
OutputLevel=DEBUG) OutputLevel=DEBUG)
trk_find_alg1 = TrackFindingAlgorithm("trk_find_alg1", trk_find_alg1 = TrackFindingAlgorithm("trk_find_alg1",
inputSourceLinks="BarrelSourceLinks", inputSourceLinks = trk_hits_srclnkr.outputSourceLinks,
inputMeasurements = trk_hits_srclnkr.outputMeasurements,
inputInitialTrackParameters= "InitTrackParamsFromClusters", inputInitialTrackParameters= "InitTrackParamsFromClusters",
outputTrajectories="trajectories1", outputTrajectories="trajectories1",
OutputLevel=DEBUG) OutputLevel=DEBUG)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment