Skip to content

Commit

Permalink
add HLT customization
Browse files Browse the repository at this point in the history
  • Loading branch information
mariadalfonso committed Jan 9, 2018
1 parent c807cc9 commit 33641e5
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions HLTrigger/Configuration/python/customizeHLTforCMSSW.py
Expand Up @@ -17,6 +17,13 @@
# pset.minGoodStripCharge = cms.PSet(refToPSet_ = cms.string('HLTSiStripClusterChargeCutNone'))
# return process


def customiseForXXXXX(process):
from RecoLocalCalo.HcalRecProducers.HBHEPhase1Reconstructor_cfi import hbheprereco
for producer in producers_by_type(process, "HBHEPhase1Reconstructor"):
producer.algorithm.ts4Max = cms.vdouble(100., 20000., 30000)
return process

# Add mahi to HCAL local reconstruction
def customiseFor21664(process):
from RecoLocalCalo.HcalRecProducers.HBHEPhase1Reconstructor_cfi import hbheprereco
Expand Down Expand Up @@ -97,5 +104,6 @@ def customizeHLTforCMSSW(process, menuType="GRun"):
process = customiseFor20429(process)
process = customiseFor21437(process)
process = customiseFor21664(process)
process = customiseForXXXXX(process)

return process

0 comments on commit 33641e5

Please sign in to comment.