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