ATLAS Offline Software
Loading...
Searching...
No Matches
MenuMapping.py
Go to the documentation of this file.
1# Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
2
3"""
4This map specifies with menu to load from TriggerMenuMT/python/L1/Menu
5
6The mapping takes precedence over the existence of the menu definition file in the above directory
7The resolved name is also being used in the L1/Config/ItemDef.py and L1/Config/ThresholdDef*.py files
8
9Prescale sets will be stripped from the menu name
10"""
11
12menuMap = {
13 # pp
14 "Physics_pp_run3_v1" : ["Physics_pp_run3_v1","Physics_pp_run3_v1_inputs","Physics_pp_run3_v1_inputs_legacy"],
15 "PhysicsP1_pp_run3_v1" : ["Physics_pp_run3_v1","Physics_pp_run3_v1_inputs","Physics_pp_run3_v1_inputs_legacy"],
16 "MC_pp_run3_v1" : ["MC_pp_run3_v1", "MC_pp_run3_v1_inputs", "Physics_pp_run3_v1_inputs_legacy"],
17 "Dev_pp_run3_v1" : ["MC_pp_run3_v1", "MC_pp_run3_v1_inputs", "Physics_pp_run3_v1_inputs_legacy"],
18
19 # pp for run 4
20 "Physics_pp_run4_v1" : ["Physics_pp_run4_v1","Physics_pp_run4_v1_inputs","Physics_pp_run4_v1_inputs_legacy"],
21 #"PhysicsP1_pp_run4_v1" : ["Physics_pp_run4_v1","Physics_pp_run4_v1_inputs","Physics_pp_run4_v1_inputs_legacy"],
22 "MC_pp_run4_v1" : ["MC_pp_run4_v1", "MC_pp_run4_v1_inputs", "Physics_pp_run4_v1_inputs_legacy"],
23 "Dev_pp_run4_v1" : ["MC_pp_run4_v1", "MC_pp_run4_v1_inputs", "Physics_pp_run4_v1_inputs_legacy"],
24
25 # low mu
26 "PhysicsP1_pp_lowMu_run3_v1" : ["Physics_HI_run3_v1", "Physics_HI_run3_v1_inputs", "Physics_HI_run3_v1_inputs_legacy"],
27 "Dev_pp_lowMu_run3_v1" : ["Physics_HI_run3_v1", "Physics_HI_run3_v1_inputs", "Physics_HI_run3_v1_inputs_legacy"],
28
29 # cosmics
30 "Cosmic_run3_v1" : ["Physics_pp_run3_v1","Physics_pp_run3_v1_inputs","Physics_pp_run3_v1_inputs_legacy"],
31
32 # HI
33 "PhysicsP1_HI_run3_v1" : ["Physics_HI_run3_v1", "Physics_HI_run3_v1_inputs", "Physics_HI_run3_v1_inputs_legacy"],
34 "MC_HI_run3_v1" : ["MC_HI_run3_v1", "Physics_HI_run3_v1_inputs", "Physics_HI_run3_v1_inputs_legacy"],
35 "Dev_HI_run3_v1" : ["MC_HI_run3_v1", "Physics_HI_run3_v1_inputs", "Physics_HI_run3_v1_inputs_legacy"],
36
37 # Special dummy menus needed for compiling CTPIN switch matrix
38 "AllCTPIn_pp_run3_v1" : ["AllCTPIn_run3_v1", "Physics_pp_run3_v1_inputs", "Physics_pp_run3_v1_inputs_legacy"],
39 "AllCTPIn_HI_run3_v1" : ["AllCTPIn_run3_v1", "Physics_HI_run3_v1_inputs", "Physics_HI_run3_v1_inputs_legacy"],
40}