ATLAS Offline Software
TrigDecisionToolConfig.py
Go to the documentation of this file.
1 #
2 # Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration
3 #
4 
5 from AthenaConfiguration.AccumulatorCache import AccumulatorCache
6 from AthenaCommon.Logging import logging
7 
8 
9 @AccumulatorCache
11  '''
12  @brief Configures and returns the TrigDecisionTool (TDT) for use in Athena-MT.
13  The TDT uses a Tool interface such that it can be used in either Athena or AnalysisBase releases.
14  The manages an MT-safe internal state, hence we should only have one instance of it configured in any job.
15  It is thus one of the few places where it OK to use a PublicTool in Athena-MT.
16 
17  Obtain the configured public tool instance by calling getPrimary()
18  on the ComponentAccumulator returned by this function, or by calling
19  getPublicTool('TrigDecisionTool') or getPrimaryAndMerge()
20  on any downstream merged ComponentAccumulator.
21 
22 
23  When running in AnalysisBase, the tdt.TrigConfigTool='TrigConf::xAODConfigTool' should be used
24  in place of the TrigConf::xAODConfigSvc
25  '''
26  msg = logging.getLogger('TrigDecisionToolCfg')
27  from AthenaConfiguration.ComponentFactory import CompFactory
28  from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator
29  from AthenaConfiguration.Enums import Format, Project
30  acc = ComponentAccumulator()
31 
32  from TrigConfxAOD.TrigConfxAODConfig import getxAODConfigSvc
33  cfgsvc = acc.getPrimaryAndMerge(getxAODConfigSvc(flags))
34 
35  tdt = CompFactory.Trig.TrigDecisionTool('TrigDecisionTool')
36  tdt.TrigConfigSvc = cfgsvc
37  use_run3_format = flags.Trigger.EDMVersion == 3 # or flags.Trigger.doEDMVersionConversion (to be added when this is working)
38  tdt.NavigationFormat = 'TrigComposite' if use_run3_format else 'TriggerElement'
39  tdt.HLTSummary = getRun3NavigationContainerFromInput(flags)
40 
41  if flags.Input.Format is Format.BS and flags.Trigger.EDMVersion in [1, 2]:
42  tdt.UseAODDecision = True
43 
44  if flags.Common.Project is not Project.AthAnalysis:
45  # Full Athena
46  # This pre-loads libraries required to read the run 2 trigger navigation
47  from TrigEDMConfig.TriggerEDM import EDMLibraries
48  nav = CompFactory.HLT.Navigation('Navigation')
49  nav.Dlls = [e for e in EDMLibraries if 'TPCnv' not in e]
50  tdt.Navigation = nav
51  acc.addPublicTool(nav)
52 
53  acc.addPublicTool(tdt, primary=True)
54 
55  msg.info('Configuring the TrigDecisionTool and xAODConfigSvc to use ConfigSource: %s, Run3NavigationFormat: %s, Run3NavigationSummaryCollection: %s',
56  'InFileMetadata' if flags.Trigger.triggerConfig == 'INFILE' else 'ConditionsAndDetStore',
57  str(use_run3_format),
58  tdt.HLTSummary)
59 
60  return acc
61 
62 
63 # List of all possible keys of the Run 3 navigation summary collection
64 # in order of verbosity. Want to take the most verbose which is available.
65 possible_keys = [
66  'HLTNav_Summary', # Produced initially online (only the final nodes, all other nodes spread out over many many collections created by trigger framework algs)
67  'HLTNav_Summary_OnlineSlimmed', # Produced online, all nodes in one container. Accessible during RAWtoALL, good for T0 monitoring.
68  'HLTNav_Summary_ESDSlimmed', # Produced offline in jobs writing ESD. Minimal slimming, good for T0-style monitoring. Equivalent to AOD at AODFULL level.
69  'HLTNav_Summary_AODSlimmed', # Produced offline in jobs writing AOD. Minimal slimming in AODFULL mode, good for T0-style monitoring. Slimming applied in AODSLIM mode, good for analysis use, final-features accessible.
70  'HLTNav_Summary_DAODSlimmed', # Chain level slimming and IParticle feature-compacting for DAOD. Good for analysis use, final-features four vectors accessible.
71  'HLTNav_R2ToR3Summary' # Output of Run 2 to Run 3 navigation conversion procedure. Somewhat equivalent to AODFULL level. Designed to be further reduced to DAODSlimmed level before analysis use.
72  ]
73 
74 @AccumulatorCache
76  # What to return if we cannot look in the file
77  default_key = 'HLTNav_Summary_OnlineSlimmed' if flags.Trigger.doOnlineNavigationCompactification else 'HLTNav_Summary'
78  to_return = default_key
79 
80  if flags.Trigger.doEDMVersionConversion:
81  to_return = 'HLTNav_R2ToR3Summary'
82  else:
83  for key in possible_keys:
84  if key in flags.Input.Collections:
85  to_return = key
86  break
87 
88  msg = logging.getLogger('getRun3NavigationContainerFromInput')
89  msg.info('Returning %s as the Run 3 trigger navigation colletion to read in this job.', to_return)
90 
91  # Double check 'possible_keys' is kept up to date
92  if to_return not in possible_keys:
93  msg.error('Must add %s to the "possible_keys" array!', to_return)
94 
95  return to_return
96 
97 
98 if __name__ == '__main__':
99  from AthenaConfiguration.AllConfigFlags import initConfigFlags
100  from AthenaConfiguration.TestDefaults import defaultTestFiles
101  import sys
102 
103  flags = initConfigFlags()
104  if '--RAWRUN2' in sys.argv:
105  flags.Input.Files = defaultTestFiles.RAW_RUN2
106  else:
107  flags.Input.Files = defaultTestFiles.AOD_RUN2_DATA
108  #TODO expand the test scope Run3 AODs and RAWs
109 
110  flags.lock()
111  acc = TrigDecisionToolCfg(flags)
112  acc.printConfig(withDetails=True, summariseProps=True, prefix='UnitTest')
113  acc.wasMerged()
114  # TODO possibly add EDM printing alg using the TDT
115 
python.JetAnalysisCommon.ComponentAccumulator
ComponentAccumulator
Definition: JetAnalysisCommon.py:302
TrigConfxAODConfig.getxAODConfigSvc
def getxAODConfigSvc(flags)
Definition: TrigConfxAODConfig.py:5
python.TrigDecisionToolConfig.getRun3NavigationContainerFromInput
def getRun3NavigationContainerFromInput(flags)
Definition: TrigDecisionToolConfig.py:75
python.AllConfigFlags.initConfigFlags
def initConfigFlags()
Definition: AllConfigFlags.py:19
str
Definition: BTagTrackIpAccessor.cxx:11
python.TrigDecisionToolConfig.TrigDecisionToolCfg
def TrigDecisionToolCfg(flags)
Definition: TrigDecisionToolConfig.py:10