Skip to content
Snippets Groups Projects
Commit be9e508c authored by Frank Winklmeier's avatar Frank Winklmeier
Browse files

Merge branch 'pepds' into 'master'

TrigP1Test: fix for PEP_DS ART test

See merge request atlas/athena!46883
parents ef637f3a c9fc93a0
No related branches found
No related tags found
No related merge requests found
......@@ -12,7 +12,6 @@ from TriggerMenuMT.HLTMenuConfig.Menu import LS2_v1, EventBuildingInfo, StreamIn
from TriggerMenuMT.HLTMenuConfig.Menu.ChainDefInMenu import ChainProp
from TriggerMenuMT.HLTMenuConfig.CommonSequences import EventBuildingSequences
from TrigPartialEventBuilding.TrigPartialEventBuildingConfig import StaticPEBInfoWriterToolCfg, RoIPEBInfoWriterToolCfg
from TriggerJobOpts.TriggerFlags import TriggerFlags
from libpyeformat_helper import SubDetector
from AthenaConfiguration.AllConfigFlags import ConfigFlags
from AthenaCommon.Include import include
......@@ -32,7 +31,9 @@ DataScoutingInfo.TruncationThresholds[3] = 5*(1024**2) # 5 MB
def myMenu():
log.debug('Executing myMenu')
TriggerFlags.EgammaSlice.signatures = [
from TriggerMenuMT.HLTMenuConfig.Menu.SignatureDicts import ChainStore
chains = ChainStore()
chains['Egamma'] = [
# DS+PEB chain (special HLT result and subset of detector data saved)
ChainProp(name='HLT_e3_etcut_ElectronDSPEBTest_L1EM3', stream=['ElectronDSPEBTest'], groups=['RATE:Test','BW:Other']),
......@@ -49,16 +50,17 @@ def myMenu():
ChainProp(name='HLT_e12_etcut_L1EM3', stream=['Main'], groups=['RATE:SingleElectron', 'BW:Electron']),
]
TriggerFlags.MuonSlice.signatures = [
chains['Muon'] = [
# PEB chain (fixed subset of detector data saved and no HLT result)
ChainProp(name='HLT_mu6_TestPEBTwo_L1MU6', stream=['TestPEBTwo'], groups=['RATE:Test','BW:Other']),
ChainProp(name='HLT_mu6_TestPEBTwo_L1MU5VF', stream=['TestPEBTwo'], groups=['RATE:Test','BW:Other']),
# PEB chain (RoI-based subset of detector data saved and no HLT result)
ChainProp(name='HLT_mu6_TestPEBFour_L1MU6', stream=['TestPEBFour'], groups=['RATE:Test','BW:Other']),
ChainProp(name='HLT_mu6_TestPEBFour_L1MU5VF', stream=['TestPEBFour'], groups=['RATE:Test','BW:Other']),
# Standard chain (full HLT result and full detector data saved)
ChainProp(name='HLT_2mu6_L12MU6', stream=['Main'], groups=['RATE:SingleMuon', 'BW:Muon']),
ChainProp(name='HLT_2mu6_L12MU5VF', stream=['Main'], groups=['RATE:SingleMuon', 'BW:Muon']),
]
return chains
LS2_v1.setupMenu = myMenu
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment