Skip to content

Commit 54d0336

Browse files
authored
Merge pull request #49324 from mmusich/mm_cleanUpTrackeringAlpakaSpecialization
Clean-up specializations of `PixelTrackProducerFromSoAAlpaka` and `SiPixelRecHitFromSoAAlpaka`
2 parents 5796126 + 8ec3527 commit 54d0336

File tree

5 files changed

+4
-21
lines changed

5 files changed

+4
-21
lines changed

HLTrigger/Configuration/python/HLT_75e33/modules/hltPhase2PixelTracksCAExtension_cfi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import FWCore.ParameterSet.Config as cms
22

3-
hltPhase2PixelTracksCAExtension = cms.EDProducer("PixelTrackProducerFromSoAAlpakaPhase2",
3+
hltPhase2PixelTracksCAExtension = cms.EDProducer("PixelTrackProducerFromSoAAlpaka",
44
beamSpot = cms.InputTag("hltOnlineBeamSpot"),
55
minNumberOfHits = cms.int32(0),
66
minQuality = cms.string('tight'),

HLTrigger/Configuration/python/HLT_75e33/modules/hltPhase2PixelTracks_cfi.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import FWCore.ParameterSet.Config as cms
22

3-
hltPhase2PixelTracks = cms.EDProducer("PixelTrackProducerFromSoAAlpakaPhase2",
3+
hltPhase2PixelTracks = cms.EDProducer("PixelTrackProducerFromSoAAlpaka",
44
beamSpot = cms.InputTag("hltOnlineBeamSpot"),
55
minNumberOfHits = cms.int32(0),
66
minQuality = cms.string('tight'),
@@ -31,4 +31,4 @@
3131
mightGet = cms.optional.untracked.vstring,
3232
passLabel = cms.string('hltPhase2PixelTracks')
3333
)
34-
phase2LegacyPixelTracks.toReplaceWith(hltPhase2PixelTracks, _hltPhase2PixelTracksLegacy)
34+
phase2LegacyPixelTracks.toReplaceWith(hltPhase2PixelTracks, _hltPhase2PixelTracksLegacy)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import FWCore.ParameterSet.Config as cms
22

3-
hltSiPixelRecHits = cms.EDProducer('SiPixelRecHitFromSoAAlpakaPhase2',
3+
hltSiPixelRecHits = cms.EDProducer('SiPixelRecHitFromSoAAlpaka',
44
pixelRecHitSrc = cms.InputTag('hltPhase2SiPixelRecHitsSoA'),
55
src = cms.InputTag('hltSiPixelClusters'),
66
)

RecoLocalTracker/SiPixelRecHits/plugins/SiPixelRecHitFromSoAAlpaka.cc

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -177,13 +177,5 @@ void SiPixelRecHitFromSoAAlpaka::produce(edm::StreamID streamID,
177177
iEvent.emplace(rechitsPutToken_, std::move(output));
178178
}
179179

180-
using SiPixelRecHitFromSoAAlpakaPhase1 = SiPixelRecHitFromSoAAlpaka;
181-
using SiPixelRecHitFromSoAAlpakaPhase2 = SiPixelRecHitFromSoAAlpaka;
182-
using SiPixelRecHitFromSoAAlpakaHIonPhase1 = SiPixelRecHitFromSoAAlpaka;
183-
184180
#include "FWCore/Framework/interface/MakerMacros.h"
185181
DEFINE_FWK_MODULE(SiPixelRecHitFromSoAAlpaka);
186-
// Keeping these to ease the migration of the HLT menu
187-
DEFINE_FWK_MODULE(SiPixelRecHitFromSoAAlpakaPhase1);
188-
DEFINE_FWK_MODULE(SiPixelRecHitFromSoAAlpakaPhase2);
189-
DEFINE_FWK_MODULE(SiPixelRecHitFromSoAAlpakaHIonPhase1);

RecoTracker/PixelTrackFitting/plugins/PixelTrackProducerFromSoAAlpaka.cc

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -508,12 +508,3 @@ void PixelTrackProducerFromSoAAlpaka::produce(edm::StreamID streamID,
508508

509509
#include "FWCore/Framework/interface/MakerMacros.h"
510510
DEFINE_FWK_MODULE(PixelTrackProducerFromSoAAlpaka);
511-
512-
// (also) for HLT migration, could be removed once done
513-
using PixelTrackProducerFromSoAAlpakaPhase1 = PixelTrackProducerFromSoAAlpaka;
514-
using PixelTrackProducerFromSoAAlpakaPhase2 = PixelTrackProducerFromSoAAlpaka;
515-
using PixelTrackProducerFromSoAAlpakaHIonPhase1 = PixelTrackProducerFromSoAAlpaka;
516-
517-
DEFINE_FWK_MODULE(PixelTrackProducerFromSoAAlpakaPhase1);
518-
DEFINE_FWK_MODULE(PixelTrackProducerFromSoAAlpakaPhase2);
519-
DEFINE_FWK_MODULE(PixelTrackProducerFromSoAAlpakaHIonPhase1);

0 commit comments

Comments
 (0)