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