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

Functions

 CaloEstimatedGainToolCfg (flags)
 sorted_repr (c)

Variables

 flags1 = initConfigFlags()
 Files
 acc1 = CaloEstimatedGainToolCfg (flags1)
list only = ['CaloEstimatedGainTool']
 summariseProps
 True
 onlyComponents
 Configurable = CompFactory.CaloEstimatedGainTool.__bases__[0]

Function Documentation

◆ CaloEstimatedGainToolCfg()

python.CaloEstimatedGainToolConfig.CaloEstimatedGainToolCfg ( flags)

Definition at line 12 of file CaloEstimatedGainToolConfig.py.

12def CaloEstimatedGainToolCfg (flags):
13 result = ComponentAccumulator()
14
15 from AtlasGeoModel.GeoModelConfig import GeoModelCfg
16 result.merge (GeoModelCfg (flags))
17
18 from LArGeoAlgsNV.LArGMConfig import LArGMCfg
19 from TileGeoModel.TileGMConfig import TileGMCfg
20
21 result.merge(LArGMCfg(flags))
22 result.merge(TileGMCfg(flags))
23
24 from LArCabling.LArCablingConfig import LArFebRodMappingCfg, LArCalibIdMappingCfg
25 result.merge(LArFebRodMappingCfg(flags))
26 result.merge(LArCalibIdMappingCfg(flags))
27
28 from TileConditions.TileInfoLoaderConfig import TileInfoLoaderCfg
29 result.merge (TileInfoLoaderCfg (flags))
30
31 from TileConditions.TileEMScaleConfig import TileCondToolEmscaleCfg
32 acc = TileCondToolEmscaleCfg (flags)
33 emscaleTool = acc.popPrivateTools()
34 result.merge (acc)
35
36 from TileConditions.TileSampleNoiseConfig import TileCondToolNoiseSampleCfg
37 acc = TileCondToolNoiseSampleCfg (flags)
38 noiseSampleTool = acc.popPrivateTools()
39 result.merge (acc)
40
41 from LArRecUtils.LArADC2MeVCondAlgConfig import LArADC2MeVCondAlgCfg
42 result.merge (LArADC2MeVCondAlgCfg (flags))
43 adc2mev = result.getCondAlgo ('LArADC2MeVCondAlg')
44
45 TileCondIdTransforms=CompFactory.TileCondIdTransforms
46
47 CaloEstimatedGainTool=CompFactory.CaloEstimatedGainTool
48 tool = CaloEstimatedGainTool ('CaloEstimatedGainTool',
49 ADC2MeVKey = adc2mev.LArADC2MeVKey,
50 TileCondIdTransforms = TileCondIdTransforms(),
51 TileCondToolEmscale = emscaleTool,
52 TileCondToolNoiseSample = noiseSampleTool)
53
54 result.setPrivateTools (tool)
55
56 return result
57
58

◆ sorted_repr()

python.CaloEstimatedGainToolConfig.sorted_repr ( c)

Definition at line 72 of file CaloEstimatedGainToolConfig.py.

72 def sorted_repr (c):
73 if not isinstance(c, Configurable): return str(c)
74 args = [c.name] + ['{}={!r}'.format(item[0], sorted_repr(item[1])) for item in sorted(c._properties.items())]
75 return '{}({})'.format(type(c).__name__, ', '.join(args))
76

Variable Documentation

◆ acc1

python.CaloEstimatedGainToolConfig.acc1 = CaloEstimatedGainToolCfg (flags1)

Definition at line 66 of file CaloEstimatedGainToolConfig.py.

◆ Configurable

python.CaloEstimatedGainToolConfig.Configurable = CompFactory.CaloEstimatedGainTool.__bases__[0]

Definition at line 71 of file CaloEstimatedGainToolConfig.py.

◆ Files

python.CaloEstimatedGainToolConfig.Files

Definition at line 64 of file CaloEstimatedGainToolConfig.py.

◆ flags1

python.CaloEstimatedGainToolConfig.flags1 = initConfigFlags()

Definition at line 63 of file CaloEstimatedGainToolConfig.py.

◆ only

list python.CaloEstimatedGainToolConfig.only = ['CaloEstimatedGainTool']

Definition at line 67 of file CaloEstimatedGainToolConfig.py.

◆ onlyComponents

python.CaloEstimatedGainToolConfig.onlyComponents

Definition at line 68 of file CaloEstimatedGainToolConfig.py.

◆ summariseProps

python.CaloEstimatedGainToolConfig.summariseProps

Definition at line 68 of file CaloEstimatedGainToolConfig.py.

◆ True

python.CaloEstimatedGainToolConfig.True

Definition at line 68 of file CaloEstimatedGainToolConfig.py.