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

Functions

 GepEratioAlgCfg (flags, alg_type, str name, str seedsKey, str caloCellsMapKey='GepCells', str outputEratioDecorKey='Eratio', **kwargs)
 GepEMEratioAlgCfg (flags, str name, str seedsKey='L1_eEMRoI', caloCellsMapKey='GepCells', outputEratioDecorKey='Eratio', **kwargs)
 GepTauEratioAlgCfg (flags, str name, str seedsKey='L1_eTauRoI', caloCellsMapKey='GepCells', outputEratioDecorKey='Eratio', **kwargs)

Function Documentation

◆ GepEMEratioAlgCfg()

GepEratioAlgConfig.GepEMEratioAlgCfg ( flags,
str name,
str seedsKey = 'L1_eEMRoI',
caloCellsMapKey = 'GepCells',
outputEratioDecorKey = 'Eratio',
** kwargs )

Definition at line 24 of file GepEratioAlgConfig.py.

28 **kwargs):
29 return GepEratioAlgCfg(flags, CompFactory.GepEMEratioAlg, name, seedsKey, caloCellsMapKey, outputEratioDecorKey, **kwargs)
30

◆ GepEratioAlgCfg()

GepEratioAlgConfig.GepEratioAlgCfg ( flags,
alg_type,
str name,
str seedsKey,
str caloCellsMapKey = 'GepCells',
str outputEratioDecorKey = 'Eratio',
** kwargs )

Definition at line 6 of file GepEratioAlgConfig.py.

10 **kwargs):
11 acc = ComponentAccumulator()
12
13 alg = alg_type(name, **kwargs)
14
15 alg.SeedsKey = seedsKey
16 alg.gepCellMapKey = caloCellsMapKey
17 alg.OutputEratioDecorKey = outputEratioDecorKey
18
19 acc.addEventAlgo(alg, primary=True)
20
21 return acc
22
23

◆ GepTauEratioAlgCfg()

GepEratioAlgConfig.GepTauEratioAlgCfg ( flags,
str name,
str seedsKey = 'L1_eTauRoI',
caloCellsMapKey = 'GepCells',
outputEratioDecorKey = 'Eratio',
** kwargs )

Definition at line 31 of file GepEratioAlgConfig.py.

35 **kwargs):
36 return GepEratioAlgCfg(flags, CompFactory.GepTauEratioAlg, name, seedsKey, caloCellsMapKey, outputEratioDecorKey, **kwargs)