ATLAS Offline Software
Loading...
Searching...
No Matches
CheckFlow_New_Minbias.py
Go to the documentation of this file.
10import AthenaCommon.AtlasUnixStandardJob
11
12import AthenaPoolCnvSvc.ReadAthenaPool
13svcMgr.EventSelector.InputCollections= ["hijing.flow.10-15.pool.root"]
14#svcMgr.EventSelector.InputCollections= ["/tmp/soumya/soumya.pool.root"]
15
16from AthenaCommon.GlobalFlags import globalflags
17from PartPropSvc.PartPropSvcConf import PartPropSvc
18svcMgr += PartPropSvc()
19
20#include( "AthenaCommon/AthenaCommonFlags.py" )
21
22
23#------------------------------------------------------------
24# Load main libraries
25#------------------------------------------------------------
26from AthenaCommon.AlgSequence import AlgSequence
27job=AlgSequence()
28from FlowAfterburner.FlowAfterburnerConf import CheckFlow_New_Minbias
30
31theApp.Dlls += [ "GeneratorObjectsAthenaPoolPoolCnv" ]
32#------------------------------------------------------------
33# Number of events and OutputLevel
34#------------------------------------------------------------
35theApp.EvtMax = -1
36svcMgr.MessageSvc.OutputLevel = 3
37
38#------------------------------------------------------------
39# Persistency services ntuples etc...
40#------------------------------------------------------------
41# THistService for native root in Athena
42from GaudiSvc.GaudiSvcConf import THistSvc
43svcMgr += THistSvc()
44svcMgr.THistSvc.Output = ["FlowOutPut DATAFILE='CheckFlow.hist.root' OPT='RECREATE'"]
45
46#theApp.Dlls += [ "GaudiSvc" ]
47#THistSvc = Algorithm( "THistSvc" )
48#THistSvc.Output = ["FlowOutPut DATAFILE='CheckFlow.hist.root' OPT='RECREATE'"]
49
50#CheckFlow = Algorithm( "CheckFlow" )
51CheckFlow_New_Minbias = job.CheckFlow_New_Minbias
52CheckFlow_New_Minbias.McEventKey = "GEN_EVENT"
53CheckFlow_New_Minbias.RapidityCutMax = 5.5
54#==============================================================
55#
56# End of job options file
57#
58