Skip to content

Commit

Permalink
Customisation for cms-sw#15499 (81X only)
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin-Grunewald committed Sep 1, 2016
1 parent 1b1ccd2 commit e2dc434
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions HLTrigger/Configuration/python/customizeHLTforCMSSW.py
Expand Up @@ -58,6 +58,17 @@ def customiseFor14833(process):
producer.includeME0 = cms.bool(False)
return process

def customiseFor15499(process):
for producer in producers_by_type(process,"HcalHitReconstructor"):
producer.ts4Max = cms.vdouble(100.0,70000.0)
if (producer.puCorrMethod.value() == 2):
producer.timeSigmaHPD = cms.double(5.0)
producer.timeSigmaSiPM = cms.double(3.5)
producer.pedSigmaHPD = cms.double(0.5)
producer.pedSigmaSiPM = cms.double(1.5)
producer.noiseHPD = cms.double(1.0)
producer.noiseSiPM = cms.double(2.)
return process
#
# CMSSW version specific customizations
def customizeHLTforCMSSW(process, menuType="GRun"):
Expand All @@ -70,6 +81,7 @@ def customizeHLTforCMSSW(process, menuType="GRun"):
process = customiseFor13753(process)
process = customiseFor14833(process)
process = customiseFor15440(process)
process = customiseFor15499(process)
# process = customiseFor12718(process)
pass

Expand Down

0 comments on commit e2dc434

Please sign in to comment.