ATLAS Offline Software
Functions
ViewAlgsConfig Namespace Reference

Functions

def sTgcMeasViewAlgCfg (flags, name="sTgcMeasViewAlg", **kwargs)
 
def RpcMeasViewAlgCfg (flags, name="RpcMeasViewAlg", **kwargs)
 
def MdtMeasViewAlgCfg (flags, name="MdtMeasViewAlg", **kwargs)
 
def SegmentViewAlgCfg (flags, name="SegmentViewAlg", **kwargs)
 
def xAODViewAlgsCfg (flags)
 

Function Documentation

◆ MdtMeasViewAlgCfg()

def ViewAlgsConfig.MdtMeasViewAlgCfg (   flags,
  name = "MdtMeasViewAlg",
**  kwargs 
)

Definition at line 22 of file ViewAlgsConfig.py.

22 def MdtMeasViewAlgCfg(flags, name="MdtMeasViewAlg", **kwargs):
23  result = ComponentAccumulator()
24  if not flags.Detector.GeometryMDT:
25  return result
26  the_alg = CompFactory.MuonR4.MdtMeasViewAlg(name, **kwargs)
27  result.addEventAlgo(the_alg, primary = True)
28  return result
29 

◆ RpcMeasViewAlgCfg()

def ViewAlgsConfig.RpcMeasViewAlgCfg (   flags,
  name = "RpcMeasViewAlg",
**  kwargs 
)

Definition at line 14 of file ViewAlgsConfig.py.

14 def RpcMeasViewAlgCfg(flags, name="RpcMeasViewAlg", **kwargs):
15  result = ComponentAccumulator()
16  if not flags.Detector.GeometryRPC:
17  return result
18  the_alg = CompFactory.MuonR4.RpcMeasViewAlg(name, **kwargs)
19  result.addEventAlgo(the_alg, primary = True)
20  return result
21 

◆ SegmentViewAlgCfg()

def ViewAlgsConfig.SegmentViewAlgCfg (   flags,
  name = "SegmentViewAlg",
**  kwargs 
)

Definition at line 30 of file ViewAlgsConfig.py.

30 def SegmentViewAlgCfg(flags, name="SegmentViewAlg", **kwargs):
31  result = ComponentAccumulator()
32  the_alg = CompFactory.MuonR4.SegmentViewAlg(name, **kwargs)
33  result.addEventAlgo(the_alg, primary = True)
34  return result
35 
36 

◆ sTgcMeasViewAlgCfg()

def ViewAlgsConfig.sTgcMeasViewAlgCfg (   flags,
  name = "sTgcMeasViewAlg",
**  kwargs 
)

Definition at line 6 of file ViewAlgsConfig.py.

6 def sTgcMeasViewAlgCfg(flags, name="sTgcMeasViewAlg", **kwargs):
7  result = ComponentAccumulator()
8  if not flags.Detector.GeometrysTGC:
9  return result
10  the_alg = CompFactory.MuonR4.sTgcMeasViewAlg(name, **kwargs)
11  result.addEventAlgo(the_alg, primary = True)
12  return result
13 

◆ xAODViewAlgsCfg()

def ViewAlgsConfig.xAODViewAlgsCfg (   flags)

Definition at line 37 of file ViewAlgsConfig.py.

37 def xAODViewAlgsCfg(flags):
38  result = ComponentAccumulator()
39  result.merge(MdtMeasViewAlgCfg(flags))
40  result.merge(RpcMeasViewAlgCfg(flags))
41  result.merge(sTgcMeasViewAlgCfg(flags))
42  return result
ViewAlgsConfig.RpcMeasViewAlgCfg
def RpcMeasViewAlgCfg(flags, name="RpcMeasViewAlg", **kwargs)
Definition: ViewAlgsConfig.py:14
python.JetAnalysisCommon.ComponentAccumulator
ComponentAccumulator
Definition: JetAnalysisCommon.py:302
ViewAlgsConfig.sTgcMeasViewAlgCfg
def sTgcMeasViewAlgCfg(flags, name="sTgcMeasViewAlg", **kwargs)
Definition: ViewAlgsConfig.py:6
ViewAlgsConfig.xAODViewAlgsCfg
def xAODViewAlgsCfg(flags)
Definition: ViewAlgsConfig.py:37
ViewAlgsConfig.MdtMeasViewAlgCfg
def MdtMeasViewAlgCfg(flags, name="MdtMeasViewAlg", **kwargs)
Definition: ViewAlgsConfig.py:22
ViewAlgsConfig.SegmentViewAlgCfg
def SegmentViewAlgCfg(flags, name="SegmentViewAlg", **kwargs)
Definition: ViewAlgsConfig.py:30