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

Functions

 L0MuonEndcapAlgCfg (flags, name="L0MuonEndcapAlg", **kwargs)
 L0MuonTGCChainCfg (flags, **kwargs)

Variables

 parser = SetupArgParser()
 inputFile
 nEvents
 args = parser.parse_args()
 flags = initConfigFlags()
 MsgSuppression
 RDOFileName
 acc

Function Documentation

◆ L0MuonEndcapAlgCfg()

L0MuonEndcapConfig.L0MuonEndcapAlgCfg ( flags,
name = "L0MuonEndcapAlg",
** kwargs )
Configure the initial TGC endcap data-flow boundary.

Definition at line 7 of file L0MuonEndcapConfig.py.

7def L0MuonEndcapAlgCfg(flags, name="L0MuonEndcapAlg", **kwargs):
8 """Configure the initial TGC endcap data-flow boundary."""
9 result = ComponentAccumulator()
10 result.addEventAlgo(CompFactory.L0Muon.L0MuonEndcapAlg(name, **kwargs))
11 return result
12
13

◆ L0MuonTGCChainCfg()

L0MuonEndcapConfig.L0MuonTGCChainCfg ( flags,
** kwargs )
Configure the minimal S1TGC-to-Endcap data-flow chain.

Definition at line 14 of file L0MuonEndcapConfig.py.

14def L0MuonTGCChainCfg(flags, **kwargs):
15 """Configure the minimal S1TGC-to-Endcap data-flow chain."""
16 result = ComponentAccumulator()
17
18 from L0MuonS1TGC.L0MuonS1TGCConfig import L0MuonTGCSimCfg
19
20 result.merge(L0MuonTGCSimCfg(flags, **kwargs.pop("S1TGC", {})))
21 result.merge(L0MuonEndcapAlgCfg(flags, **kwargs.pop("Endcap", {})))
22 if kwargs:
23 raise TypeError(f"Unexpected configuration groups: {sorted(kwargs)}")
24 return result
25
26

Variable Documentation

◆ acc

L0MuonEndcapConfig.acc

Definition at line 48 of file L0MuonEndcapConfig.py.

◆ args

L0MuonEndcapConfig.args = parser.parse_args()

Definition at line 40 of file L0MuonEndcapConfig.py.

◆ flags

L0MuonEndcapConfig.flags = initConfigFlags()

Definition at line 44 of file L0MuonEndcapConfig.py.

◆ inputFile

L0MuonEndcapConfig.inputFile

Definition at line 37 of file L0MuonEndcapConfig.py.

◆ MsgSuppression

L0MuonEndcapConfig.MsgSuppression

Definition at line 45 of file L0MuonEndcapConfig.py.

◆ nEvents

L0MuonEndcapConfig.nEvents

Definition at line 38 of file L0MuonEndcapConfig.py.

◆ parser

L0MuonEndcapConfig.parser = SetupArgParser()

Definition at line 36 of file L0MuonEndcapConfig.py.

◆ RDOFileName

L0MuonEndcapConfig.RDOFileName

Definition at line 46 of file L0MuonEndcapConfig.py.