From ad68e2c37a2ec36b06746803ff08b62539cdc17a Mon Sep 17 00:00:00 2001 From: Paul Seyfert Date: Wed, 23 Oct 2019 11:07:28 +0200 Subject: [PATCH] follow updates in Rec!1831 --- Hlt/RecoConf/python/RecoConf/hlt1_tracking.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Hlt/RecoConf/python/RecoConf/hlt1_tracking.py b/Hlt/RecoConf/python/RecoConf/hlt1_tracking.py index 6a86891ecfb..4cb296ae1fd 100644 --- a/Hlt/RecoConf/python/RecoConf/hlt1_tracking.py +++ b/Hlt/RecoConf/python/RecoConf/hlt1_tracking.py @@ -49,6 +49,7 @@ from PyConf.Algorithms import ( TrackEventFitter, MakePVRelations__PrFittedForwardTracks, MakeZip__PrFittedForwardTracks__BestVertexRelations, + MakeZip__RecVertices, ) from PyConf.Tools import ( @@ -252,9 +253,10 @@ def make_TrackBeamLineVertexFinderSoA_pvs(velo_tracks): Returns: DataHandle: TrackBeamLineVertexFinderSoA's OutputVertices. """ - return TrackBeamLineVertexFinderSoA( + tbl = TrackBeamLineVertexFinderSoA( TracksLocation=velo_tracks["Pr"], - TracksBackwardLocation=velo_tracks["Pr::backward"]).OutputVertices + TracksBackwardLocation=velo_tracks["Pr::backward"]) + return MakeZip__RecVertices(Input1=tbl.OutputVertices).Output def make_PatPV3DFuture_pvs(velo_tracks): -- GitLab