forked from cms-sw/cmssw
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace siPhase2Clusters and siPhase2RecHits offline clones with full…
…y specified configurations
- Loading branch information
Showing
2 changed files
with
14 additions
and
5 deletions.
There are no files selected for viewing
11 changes: 9 additions & 2 deletions
11
HLTrigger/Configuration/python/HLT_75e33/modules/hltSiPhase2Clusters_cfi.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,11 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
from RecoLocalTracker.SiPhase2Clusterizer.phase2TrackerClusterizer_cfi import siPhase2Clusters as _siPhase2Clusters | ||
hltSiPhase2Clusters = _siPhase2Clusters.clone() | ||
# Clusterizer options | ||
hltSiPhase2Clusters = cms.EDProducer('Phase2TrackerClusterizer', | ||
src = cms.InputTag("mix", "Tracker"), | ||
maxClusterSize = cms.uint32(0), # was 8 | ||
maxNumberClusters = cms.uint32(0) | ||
) | ||
|
||
from Configuration.ProcessModifiers.premix_stage2_cff import premix_stage2 | ||
premix_stage2.toModify(hltSiPhase2Clusters, src = "mixData:Tracker") |
8 changes: 5 additions & 3 deletions
8
HLTrigger/Configuration/python/HLT_75e33/modules/hltSiPhase2RecHits_cfi.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
from RecoLocalTracker.Phase2TrackerRecHits.Phase2TrackerRecHits_cfi import siPhase2RecHits as _siPhase2RecHits | ||
hltSiPhase2RecHits = _siPhase2RecHits.clone( src = "hltSiPhase2Clusters" ) | ||
|
||
# RecHits options | ||
hltSiPhase2RecHits = cms.EDProducer("Phase2TrackerRecHits", | ||
src = cms.InputTag("hltSiPhase2Clusters"), | ||
Phase2StripCPE = cms.ESInputTag("phase2StripCPEESProducer", "Phase2StripCPE") | ||
) |