Skip to content

Commit

Permalink
bug fix of return process
Browse files Browse the repository at this point in the history
  • Loading branch information
Norraphat committed Aug 5, 2021
1 parent 63bbfc1 commit c6c934e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions HLTrigger/Configuration/python/customizeHLTforCMSSW.py
Expand Up @@ -131,7 +131,7 @@ def customiseFor2018Input(process):


#temporary solution to add GEM geometry for hltGetConfiguration
def customiseForRun3GEMGeometry34785(process):
def customiseForRun3GEMGeometry34788(process):
"""Add GEM geometry to output from hltGetConfiguration"""
process.GEMGeometryESModule = cms.ESProducer(
"GEMGeometryESModule",
Expand All @@ -140,12 +140,14 @@ def customiseForRun3GEMGeometry34785(process):
fromDDD = cms.bool( False )
)

return process

# CMSSW version specific customizations
def customizeHLTforCMSSW(process, menuType="GRun"):

# add call to action function in proper order: newest last!
# process = customiseFor12718(process)

process = customiseForRun3GEMGeometry34785(process)
#process = customiseForRun3GEMGeometry34788(process)

return process

0 comments on commit c6c934e

Please sign in to comment.