ATLAS Offline Software
Loading...
Searching...
No Matches
python.PixelReadoutGeometryConfig Namespace Reference

Functions

 PixelReadoutManagerCfg (flags, name="PixelReadoutManager", **kwargs)
 ITkPixelReadoutManagerCfg (flags, name="ITkPixelReadoutManager", **kwargs)
 PLR_ReadoutManagerCfg (flags, name="PLR_ReadoutManager", **kwargs)

Function Documentation

◆ ITkPixelReadoutManagerCfg()

python.PixelReadoutGeometryConfig.ITkPixelReadoutManagerCfg ( flags,
name = "ITkPixelReadoutManager",
** kwargs )
Return a ComponentAccumulator with configured ITkPixelReadoutManager

Definition at line 13 of file PixelReadoutGeometryConfig.py.

13def ITkPixelReadoutManagerCfg(flags, name="ITkPixelReadoutManager", **kwargs):
14 """Return a ComponentAccumulator with configured ITkPixelReadoutManager"""
15 acc = ComponentAccumulator()
16 acc.addService(CompFactory.InDetDD.ITk.PixelReadoutManager(name, **kwargs), primary=True)
17 return acc
18

◆ PixelReadoutManagerCfg()

python.PixelReadoutGeometryConfig.PixelReadoutManagerCfg ( flags,
name = "PixelReadoutManager",
** kwargs )
Return a ComponentAccumulator with configured PixelReadoutManager

Definition at line 6 of file PixelReadoutGeometryConfig.py.

6def PixelReadoutManagerCfg(flags, name="PixelReadoutManager", **kwargs):
7 """Return a ComponentAccumulator with configured PixelReadoutManager"""
8 acc = ComponentAccumulator()
9 acc.addService(CompFactory.InDetDD.PixelReadoutManager(name, **kwargs), primary=True)
10 return acc
11
12

◆ PLR_ReadoutManagerCfg()

python.PixelReadoutGeometryConfig.PLR_ReadoutManagerCfg ( flags,
name = "PLR_ReadoutManager",
** kwargs )
Return a ComponentAccumulator with a PLR configured ITkPixelReadoutManager

Definition at line 19 of file PixelReadoutGeometryConfig.py.

19def PLR_ReadoutManagerCfg(flags, name="PLR_ReadoutManager", **kwargs):
20 """Return a ComponentAccumulator with a PLR configured ITkPixelReadoutManager"""
21 acc = ComponentAccumulator()
22 kwargs.setdefault("DetectorName", "PLR")
23 kwargs.setdefault("PixelIDName", "PLR_ID")
24 acc.addService(CompFactory.InDetDD.ITk.PixelReadoutManager(name, **kwargs), primary=True)
25 return acc