Skip to content

Commit

Permalink
add customization to run 2016 HLT menu on PhaseI samples
Browse files Browse the repository at this point in the history
  • Loading branch information
JanFSchulte committed Nov 28, 2016
1 parent 60fbbd9 commit ce64d34
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,11 @@ def producers_by_type(process, *types):
def customizeHLTForPFTrackingPhaseI2017(process):


process.ClusterShapeHitFilterESProducer.PixelShapeFile = 'RecoPixelVertexing/PixelLowPtUtilities/data/pixelShape_Phase1TkNewFPix.par'
process.hltSiPixelDigis.UsePhase1 = cms.bool( True )
process.hltSiPixelDigisRegForBTag.UsePhase1 = cms.bool( True )
process.hltSiPixelDigisReg.UsePhase1 = cms.bool( True )


process.hltPixelLayerTriplets.layerList = cms.vstring(
'BPix1+BPix2+BPix3',
Expand Down
12 changes: 12 additions & 0 deletions HLTrigger/Configuration/python/customizeHLTPhaseIPixelGeom.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import FWCore.ParameterSet.Config as cms


def customizeHLTPhaseIPixelGeom(process):

process.ClusterShapeHitFilterESProducer.PixelShapeFile = 'RecoPixelVertexing/PixelLowPtUtilities/data/pixelShape_Phase1TkNewFPix.par'
process.hltSiPixelDigis.UsePhase1 = cms.bool( True )
process.hltSiPixelDigisRegForBTag.UsePhase1 = cms.bool( True )
process.hltSiPixelDigisReg.UsePhase1 = cms.bool( True )


return process

0 comments on commit ce64d34

Please sign in to comment.