Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move to v2 of lowPU L1T menu (75X) #9168

Merged
merged 1 commit into from May 22, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
11 changes: 11 additions & 0 deletions L1Trigger/Configuration/python/customise_overwriteL1Menu.py
Expand Up @@ -78,6 +78,17 @@ def L1Menu_Collisions2015_lowPU_v1(process):
return process


def L1Menu_Collisions2015_lowPU_v2(process):
process.load( 'L1TriggerConfig.L1GtConfigProducers.l1GtTriggerMenuXml_cfi' )
process.l1GtTriggerMenuXml.TriggerMenuLuminosity = 'startup'
process.l1GtTriggerMenuXml.DefXmlFile = 'L1Menu_Collisions2015_lowPU_v2_L1T_Scales_20141121.xml'

process.load( 'L1TriggerConfig.L1GtConfigProducers.L1GtTriggerMenuConfig_cff' )
process.es_prefer_l1GtParameters = cms.ESPrefer( 'L1GtTriggerMenuXmlProducer', 'l1GtTriggerMenuXml' )

return process


def L1Menu_CollisionsHeavyIons2015_v0(process):
process.load( 'L1TriggerConfig.L1GtConfigProducers.l1GtTriggerMenuXml_cfi' )
process.l1GtTriggerMenuXml.TriggerMenuLuminosity = 'startup'
Expand Down
4 changes: 2 additions & 2 deletions L1Trigger/L1TCommon/python/customsPostLS1.py
Expand Up @@ -79,8 +79,8 @@ def customiseSimL1EmulatorForStage1(process):
from L1Trigger.Configuration.customise_overwriteL1Menu import *

def customiseSimL1EmulatorForPostLS1_lowPU(process):
# move to the lowPU v1 L1 menu once the HLT has been updated accordingly
process = L1Menu_Collisions2015_lowPU_v1(process)
# move to the lowPU v2 L1 menu once the HLT has been updated accordingly
process = L1Menu_Collisions2015_lowPU_v2(process)
return process

def customiseSimL1EmulatorForPostLS1_50ns(process):
Expand Down