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
12
13
14DevGroup = ['Development']
15
17
18 chains = mc_menu.setupMenu()
19
20 from AthenaCommon.Logging import logging
21 log = logging.getLogger( __name__ )
22 log.info('[setupMenu] going to add the Dev menu chains now')
23
24 chains['Muon'] += []
25 chains['Egamma'] += []
26 chains['Tau'] += []
27 chains['Jet'] += []
28 chains['Bjet'] += []
29 chains['MET'] += []
30 chains['Bphysics'] += []
31 chains['UnconventionalTracking'] += []
32 chains['Combined'] += []
33 chains['Beamspot'] += []
34 chains['MinBias'] += []
35 chains['Calib'] += []
36 chains['Streaming'] += []
37 chains['Monitor'] += []
38 return chains