From 92b99bf694a69bb8852c74f3fdb2cf917e2eb7ed Mon Sep 17 00:00:00 2001 From: Andrea Bocci Date: Wed, 28 Nov 2018 18:06:28 +0100 Subject: [PATCH] Migrate tracker local reconstruction and pixel tracking to Tasks (backport #25163) (cms-patatrack#202) Backport "Migrate tracker local reconstruction and pixel tracking to Tasks" (#25163) to the Patatrack branch: - migrate RecoLocalTracker_cff to Tasks; - migrate RecoPixelVertexing_cff to Tasks; - keeping sequences to avoid massive migration (for now). --- .../Configuration/python/RecoPixelVertexing_cff.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/RecoPixelVertexing/Configuration/python/RecoPixelVertexing_cff.py b/RecoPixelVertexing/Configuration/python/RecoPixelVertexing_cff.py index 6ba1498313cb7..34ee6fadb04de 100644 --- a/RecoPixelVertexing/Configuration/python/RecoPixelVertexing_cff.py +++ b/RecoPixelVertexing/Configuration/python/RecoPixelVertexing_cff.py @@ -6,4 +6,5 @@ # #from RecoPixelVertexing.PixelVertexFinding.PixelVertexes_cff import * from RecoVertex.PrimaryVertexProducer.OfflinePixel3DPrimaryVertices_cfi import * -recopixelvertexing = cms.Sequence(pixelTracksSequence*pixelVertices) +recopixelvertexingTask = cms.Task(pixelTracksTask,pixelVertices) +recopixelvertexing = cms.Sequence(recopixelvertexingTask)