Skip to content

Commit

Permalink
Merge pull request #1 from kpedro88/M2-param-Fixes
Browse files Browse the repository at this point in the history
customize HLT for changed M2 param
  • Loading branch information
mariadalfonso committed Nov 14, 2016
2 parents 17d21b0 + 9305d4a commit 10340ec
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions HLTrigger/Configuration/python/customizeHLTforCMSSW.py
Expand Up @@ -69,6 +69,13 @@ def customiseFor15499(process):
producer.noiseHPD = cms.double(1.0)
producer.noiseSiPM = cms.double(2.)
return process

def customiseFor16569(process):
for mod in ['hltHbhereco','hltHbherecoMethod2L1EGSeeded','hltHbherecoMethod2L1EGUnseeded','hltHfreco','hltHoreco']:
if hasattr(process,mod):
getattr(process,mod).ts4chi2 = cms.vdouble(15.,5000.)
return process

#
# CMSSW version specific customizations
def customizeHLTforCMSSW(process, menuType="GRun"):
Expand All @@ -82,6 +89,7 @@ def customizeHLTforCMSSW(process, menuType="GRun"):
process = customiseFor14833(process)
process = customiseFor15440(process)
process = customiseFor15499(process)
process = customiseFor16569(process)
# process = customiseFor12718(process)
pass

Expand Down

0 comments on commit 10340ec

Please sign in to comment.