ATLAS Offline Software
checkCloningFactor.py
Go to the documentation of this file.
1 
9 theApp.EvtMax = -1
10 #--------------------------------------------------------------
11 # Load POOL support
12 #--------------------------------------------------------------
13 import AthenaPoolCnvSvc.ReadAthenaPool
14 svcMgr.EventSelector.InputCollections = ["test.pool.root"]
15 
16 #--------------------------------------------------------------
17 # Private Application Configuration options
18 #--------------------------------------------------------------
19 from AthenaCommon.AlgSequence import AlgSequence, AthSequencer
20 job = AlgSequence()
21 job += AthSequencer("ModSequence1")
22 from Pythia8B_i.Pythia8B_iConf import CheckCloningFactor
23 job.ModSequence1 += CheckCloningFactor('CheckCloningFactor')
24 #--------------------------------------------------------------
25 # Set output level threshold (2=DEBUG, 3=INFO, 4=WARNING, 5=ERROR, 6=FATAL )
26 #--------------------------------------------------------------
27 svcMgr.MessageSvc.OutputLevel = 3
28 #==============================================================
29 #
30 # End of job options file
31 #
32 
python.AlgSequence.AlgSequence
AlgSequence
Definition: PhysicsAnalysis/D3PDTools/AnaAlgorithm/python/AlgSequence.py:7
python.AlgSequence.AthSequencer
AthSequencer
Definition: Control/AthenaCommon/python/AlgSequence.py:64