ATLAS Offline Software
local_jO.py
Go to the documentation of this file.
1 theApp.EvtMax = -1
2 
3 import AthenaPoolCnvSvc.ReadAthenaPool
4 svcMgr.EventSelector.InputCollections = [ '/eos/atlas/atlascerngroupdisk/phys-gener/examples/rivet/EVNT.root' ]
5 
6 from AthenaCommon.AlgSequence import AlgSequence
7 job = AlgSequence()
8 
9 from xAODEventInfoCnv.xAODEventInfoCnvConf import xAODMaker__EventInfoCnvAlg
10 job += xAODMaker__EventInfoCnvAlg()
11 
12 from Rivet_i.Rivet_iConf import Rivet_i
13 rivet = Rivet_i()
14 import os
15 rivet.AnalysisPath = os.environ['PWD']
16 
17 rivet.Analyses += [ 'MC_JETS' ]
18 rivet.RunName = ''
19 rivet.HistoFile = 'MyOutput.yoda.gz'
20 rivet.CrossSection = 1.0
21 #rivet.IgnoreBeamCheck = True
22 job += rivet
23 
python.AlgSequence.AlgSequence
AlgSequence
Definition: PhysicsAnalysis/D3PDTools/AnaAlgorithm/python/AlgSequence.py:7