ATLAS Offline Software
Loading...
Searching...
No Matches
Dev_pp_run4_v1.py
Go to the documentation of this file.
1# Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
2
3#------------------------------------------------------------------------#
4# Dev_pp_run4_v1.py menu for Phase-II developments
5#------------------------------------------------------------------------#
6
7# This defines the input format of the chain and it's properties with the defaults set
8# always required are: name, stream and groups
9# ['name', 'L1chainParts'=[], 'stream', 'groups', 'merging'=[], 'topoStartFrom'=False],
10
11import TriggerMenuMT.HLT.Menu.MC_pp_run4_v1 as mc_menu
12from TriggerMenuMT.HLT.Config.Utility.ChainDefInMenu import ChainProp
13
14
15DevGroup = ['Development']
16
18
19 chains = mc_menu.setupMenu()
20
21 from AthenaCommon.Logging import logging
22 log = logging.getLogger( __name__ )
23 log.info('[setupMenu] going to add the Dev menu chains now')
24
25 chains['Muon'] += []
26 chains['Egamma'] += []
27 chains['Tau'] += []
28 chains['Jet'] += []
29 chains['Bjet'] += []
30 chains['MET'] += []
31 chains['Bphysics'] += []
32 chains['UnconventionalTracking'] += []
33 chains['Combined'] += []
34 chains['Beamspot'] += []
35 chains['MinBias'] += []
36 chains['Calib'] += []
37 chains['Streaming'] += []
38 chains['Monitor'] += [
39 ChainProp(name='HLT_timeburnerprocessing_L1All', l1SeedThresholds=['FSNOSEED'], stream=['Main'], groups=['PS:NoHLTRepro','RATE:Monitoring','BW:Other']+DevGroup),
40 ]
41 return chains