ATLAS Offline Software
Functions | Variables
GlobalSimAlgCfg_hypo_mult_test Namespace Reference

Functions

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

Variables

 logger
 

Function Documentation

◆ GlobalSimulationAlgCfg()

def GlobalSimAlgCfg_hypo_mult_test.GlobalSimulationAlgCfg (   flags,
  name = "GlobalSimHypoMult",
  OutputLevel = DEBUG,
  dump = False 
)

Definition at line 10 of file GlobalSimAlgCfg_hypo_mult_test.py.

10 def GlobalSimulationAlgCfg(flags,
11  name="GlobalSimHypoMult",
12  OutputLevel=DEBUG,
13  dump=False):
14 
15  logger.setLevel(OutputLevel)
16 
17  cfg = ComponentAccumulator()
18 
19  # tool1 = CompFactory.GlobalSim.eFexCvtrAlgTool('eFexCvtrAlgTool')
20  tool1 = CompFactory.GlobalSim.eFexCvtrAlgTool('eFexCvtrAlgTool')
21  tool1.OutputLevel = OutputLevel
22 
23  tool2 = CompFactory.GlobalSim.eEmMultTestBench('eEmMultTestBench')
24  tool2.rhad = '0'
25  tool2.rhad_op = '<='
26  tool2.reta = '0'
27  tool2.reta_op = '<='
28  tool2.wstot = '0'
29  tool2.wstot_op = '<='
30 
31  tool2.OutputLevel = OutputLevel
32 
33  alg = CompFactory.GlobalSim.GlobalSimulationAlg(name + 'Alg')
34  alg.globalsim_algs = [tool1]
35  alg.TIPwriters = [tool2]
36  alg.enableDumps = dump
37  alg.OutputLevel = OutputLevel
38 
39  cfg.addEventAlgo(alg)
40 
41  return cfg

Variable Documentation

◆ logger

GlobalSimAlgCfg_hypo_mult_test.logger

Definition at line 7 of file GlobalSimAlgCfg_hypo_mult_test.py.

python.JetAnalysisCommon.ComponentAccumulator
ComponentAccumulator
Definition: JetAnalysisCommon.py:342
GlobalSimAlgCfg_hypo_mult_test.GlobalSimulationAlgCfg
def GlobalSimulationAlgCfg(flags, name="GlobalSimHypoMult", OutputLevel=DEBUG, dump=False)
Definition: GlobalSimAlgCfg_hypo_mult_test.py:10