Skip to content

Commit

Permalink
Adding L1T lowPU menu
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin-Grunewald committed May 16, 2015
1 parent 658917b commit e0458d1
Show file tree
Hide file tree
Showing 4 changed files with 1,911 additions and 0 deletions.
11 changes: 11 additions & 0 deletions L1Trigger/Configuration/python/customise_overwriteL1Menu.py
Expand Up @@ -67,6 +67,17 @@ def L1Menu_Collisions2015_50ns_v1(process):
return process


def L1Menu_Collisions2015_lowPU_v1(process):
process.load( 'L1TriggerConfig.L1GtConfigProducers.l1GtTriggerMenuXml_cfi' )
process.l1GtTriggerMenuXml.TriggerMenuLuminosity = 'startup'
process.l1GtTriggerMenuXml.DefXmlFile = 'L1Menu_Collisions2015_lowPU_v1_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
5 changes: 5 additions & 0 deletions L1Trigger/L1TCommon/python/customsPostLS1.py
Expand Up @@ -78,6 +78,11 @@ 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)
return process

def customiseSimL1EmulatorForPostLS1_50ns(process):
# move to the 50ns v0 L1 menu once the HLT has been updated accordingly
process = L1Menu_Collisions2015_50ns_v1(process)
Expand Down

0 comments on commit e0458d1

Please sign in to comment.