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