From db2fcaf4f0b484306c9044b2159eae3d9685558c Mon Sep 17 00:00:00 2001 From: JeongEun Lee Date: Wed, 3 Mar 2021 13:43:23 +0900 Subject: [PATCH] Move Sequence to Task in RecoPixelVertexing --- .../PixelLowPtUtilities/python/AllPixelTracks_cfi.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/RecoPixelVertexing/PixelLowPtUtilities/python/AllPixelTracks_cfi.py b/RecoPixelVertexing/PixelLowPtUtilities/python/AllPixelTracks_cfi.py index 1791dbcda6d2a..37867549f0cc6 100644 --- a/RecoPixelVertexing/PixelLowPtUtilities/python/AllPixelTracks_cfi.py +++ b/RecoPixelVertexing/PixelLowPtUtilities/python/AllPixelTracks_cfi.py @@ -58,8 +58,9 @@ TTRHBuilder = 'TTRHBuilderWithoutAngle4PixelTriplets' ) -allPixelTracksSequence = cms.Sequence( - allPixelTracksFitter + - clusterShapeTrackFilter + +allPixelTracksTask = cms.Task( + allPixelTracksFitter, + clusterShapeTrackFilter, allPixelTracks ) +allPixelTracksSequence = cms.Sequence(allPixelTracksTask)