ATLAS Offline Software
Loading...
Searching...
No Matches
AnalysisTriggerAlgsConfig Namespace Reference

Functions

 RoIBResultToxAODCfg (flags)

Variables

 _log = logging.getLogger('AnalysisTriggerAlgsConfig.py')
 flags = initConfigFlags()
 Files
 AtlasVersion
 GlobalTag
 MaxEvents
 topCA = MainServicesCfg(flags)
 ca
 output
 status = topCA.run()

Function Documentation

◆ RoIBResultToxAODCfg()

AnalysisTriggerAlgsConfig.RoIBResultToxAODCfg ( flags)

Definition at line 9 of file AnalysisTriggerAlgsConfig.py.

9def RoIBResultToxAODCfg(flags):
10 if (flags.Trigger.enableL1MuonPhase1 or flags.Trigger.enableL0Muon) and not flags.Trigger.enableL1CaloLegacy:
11 # No Run-2 L1 RoIs -> nothing to covert to xAOD -> don't add RoIBResultToxAOD
12 _log.debug('Not adding RoIBResultToxAOD because no Run-2 L1 system is enabled by flags')
13 return ComponentAccumulator(), []
14
15 acc = ComponentAccumulator()
16 alg = CompFactory.RoIBResultToxAOD('RoIBResultToxAOD')
17 alg.DoMuon = flags.Detector.EnableMuon and not (flags.Trigger.enableL1MuonPhase1 or flags.Trigger.enableL0Muon)
18 alg.DoCalo = flags.Detector.EnableCalo and flags.Trigger.enableL1CaloLegacy
19
20 if flags.Input.Format is Format.POOL:
21 if str(alg.xAODKeyMuon) in flags.Input.Collections:
22 _log.debug('L1Muon xAOD already in the input file, setting RoIBResultToxAOD.DoMuon=False')
23 alg.DoMuon = False
24 allCaloOutputs = [k.Path for k in [alg.xAODKeyEmTau, alg.xAODKeyEsum, alg.xAODKeyJetEt, alg.xAODKeyJet]]
25 if all([k in flags.Input.Collections for k in allCaloOutputs]):
26 _log.debug('L1Calo xAOD already in the input file, setting RoIBResultToxAOD.DoCalo=False')
27 alg.DoCalo = False
28
29 if not alg.DoMuon and not alg.DoCalo:
30 _log.debug('Not adding RoIBResultToxAOD because both DoMuon and DoCalo properties are False')
31 return ComponentAccumulator(), []
32
33 if flags.Input.Format is Format.BS:
34 from TrigT1CaloByteStream.LVL1CaloRun2ByteStreamConfig import LVL1CaloRun2ReadBSCfg
35 acc.merge(LVL1CaloRun2ReadBSCfg(flags, forRoIBResultToxAOD=True))
36
37 # Create output list to return for use by the caller
38 outputList = []
39 if alg.DoMuon:
40 outputList += [
41 (alg.xAODKeyMuon.Type, alg.xAODKeyMuon.Path)
42 ]
43 from MuonConfig.MuonGeometryConfig import MuonGeoModelCfg
44 acc.merge(MuonGeoModelCfg(flags))
45 # RPC
46 from MuonConfig.MuonCablingConfig import RPCCablingConfigCfg
47 acc.merge(RPCCablingConfigCfg(flags))
48 #TGC
49 from MuonConfig.MuonCablingConfig import TGCCablingConfigCfg
50 acc.merge(TGCCablingConfigCfg(flags))
51
52 if alg.DoCalo:
53 outputList += [
54 (alg.xAODKeyEmTau.Type, alg.xAODKeyEmTau.Path),
55 (alg.xAODKeyEsum.Type, alg.xAODKeyEsum.Path),
56 (alg.xAODKeyJetEt.Type, alg.xAODKeyJetEt.Path),
57 (alg.xAODKeyJet.Type, alg.xAODKeyJet.Path)
58 ]
59 from TrigConfigSvc.TrigConfigSvcCfg import L1ConfigSvcCfg
60 acc.merge(L1ConfigSvcCfg(flags))
61
62 acc.addEventAlgo(alg)
63
64 return acc, outputList
65
66

Variable Documentation

◆ _log

AnalysisTriggerAlgsConfig._log = logging.getLogger('AnalysisTriggerAlgsConfig.py')
protected

Definition at line 7 of file AnalysisTriggerAlgsConfig.py.

◆ AtlasVersion

AnalysisTriggerAlgsConfig.AtlasVersion

Definition at line 73 of file AnalysisTriggerAlgsConfig.py.

◆ ca

AnalysisTriggerAlgsConfig.ca

Definition at line 84 of file AnalysisTriggerAlgsConfig.py.

◆ Files

AnalysisTriggerAlgsConfig.Files

Definition at line 72 of file AnalysisTriggerAlgsConfig.py.

◆ flags

AnalysisTriggerAlgsConfig.flags = initConfigFlags()

Definition at line 71 of file AnalysisTriggerAlgsConfig.py.

◆ GlobalTag

AnalysisTriggerAlgsConfig.GlobalTag

Definition at line 74 of file AnalysisTriggerAlgsConfig.py.

◆ MaxEvents

AnalysisTriggerAlgsConfig.MaxEvents

Definition at line 75 of file AnalysisTriggerAlgsConfig.py.

◆ output

AnalysisTriggerAlgsConfig.output

Definition at line 84 of file AnalysisTriggerAlgsConfig.py.

◆ status

AnalysisTriggerAlgsConfig.status = topCA.run()

Definition at line 86 of file AnalysisTriggerAlgsConfig.py.

◆ topCA

AnalysisTriggerAlgsConfig.topCA = MainServicesCfg(flags)

Definition at line 79 of file AnalysisTriggerAlgsConfig.py.