Loading [MathJax]/extensions/tex2jax.js
ATLAS Offline Software
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
Functions | Variables
GlobalSimAlgCfg_hypo_container Namespace Reference

Functions

def GlobalSimulationAlgCfg (flags, name="GlobalSimHypoContainer", OutputLevel=DEBUG, dump=False)
 

Variables

 logger
 

Function Documentation

◆ GlobalSimulationAlgCfg()

def GlobalSimAlgCfg_hypo_container.GlobalSimulationAlgCfg (   flags,
  name = "GlobalSimHypoContainer",
  OutputLevel = DEBUG,
  dump = False 
)

Definition at line 10 of file GlobalSimAlgCfg_hypo_container.py.

10 def GlobalSimulationAlgCfg(flags,
11  name="GlobalSimHypoContainer",
12  OutputLevel=DEBUG,
13  dump=False):
14 
15  logger.setLevel(OutputLevel)
16 
17  cfg = ComponentAccumulator()
18 
19  hypoTool = CompFactory.GlobalSim.eEmSortSelectCountContainerAlgTool(
20  'eEmSortSelectCountContainerAlgTool')
21  hypoTool.enableDump = dump
22  hypoTool.OutputLevel = OutputLevel
23 
24  cmpTool = CompFactory.GlobalSim.eEmSortSelectCountContainerComparator(
25  "eEmSortSelectCountContainerCmp")
26  cmpTool.OutputLevel = OutputLevel
27 
28  alg = CompFactory.GlobalSim.GlobalSimulationAlg(name + 'Alg')
29  alg.globalsim_algs = [hypoTool, cmpTool]
30  alg.enableDumps = dump
31 
32  cfg.addEventAlgo(alg)
33 
34  return cfg

Variable Documentation

◆ logger

GlobalSimAlgCfg_hypo_container.logger

Definition at line 7 of file GlobalSimAlgCfg_hypo_container.py.

python.JetAnalysisCommon.ComponentAccumulator
ComponentAccumulator
Definition: JetAnalysisCommon.py:302
GlobalSimAlgCfg_hypo_container.GlobalSimulationAlgCfg
def GlobalSimulationAlgCfg(flags, name="GlobalSimHypoContainer", OutputLevel=DEBUG, dump=False)
Definition: GlobalSimAlgCfg_hypo_container.py:10