ATLAS Offline Software
Loading...
Searching...
No Matches
hijing.flow.minbias_pPb.py
Go to the documentation of this file.
1
13import AthenaCommon.AtlasUnixGeneratorJob
14from PartPropSvc.PartPropSvcConf import PartPropSvc
15svcMgr += PartPropSvc()
16
17#--------------------------------------------------------------
18# Private Application Configuration options
19#--------------------------------------------------------------
20from AthenaCommon.AlgSequence import AlgSequence
21job=AlgSequence()
22from Hijing_i.Hijing_iConf import Hijing
23job += Hijing()
24
25from FlowAfterburner.FlowAfterburnerConf import AddFlowByShifting
26job += AddFlowByShifting()
27
28theApp.Dlls += [ "Hijing_i", "FlowAfterburner" ]
29theApp.TopAlg = [ "Hijing" ]
30theApp.TopAlg += [ "AddFlowByShifting" ]
31
32#--------------------------------------------------------------
33# Algorithms Private Options
34#--------------------------------------------------------------
35
36Hijing = job.Hijing
37Hijing.McEventKey = "HIJING_EVENT"
38Hijing.Initialize = ["efrm 5520", "frame CMS", "proj A", "targ P",
39 "iap 208", "izp 82", "iat 1", "izt 1",
40 "bmin 0.0", "bmax 6.0", "ihpr2 4 0", # turn off quenching
41 "ihpr2 18 1", "hipr1 7 5.36", # turn on b production
42 "ihpr2 12 2", "ihpr2 21 1"] # turn on (some) decays
43 # and history
44
45
46
47AddFlowByShifting = job.AddFlowByShifting
48AddFlowByShifting.McTruthKey = "HIJING_EVENT"
49AddFlowByShifting.McFlowKey = "GEN_EVENT"
50
51#"jjia_minbias_new", "jjia_minbias_new_v2only", "fixed_vn", "fixed_v2", "jjia_minbias_old", "ao_test", "custom", "p_Pb_cent_eta_indep"
52AddFlowByShifting.FlowFunctionName="p_Pb_cent_eta_indep"
53AddFlowByShifting.FlowImplementation="exact" # "approximate" , "exact"
54
55AddFlowByShifting.RandomizePhi = 0
56
57AddFlowByShifting.FlowEtaSwitch = 0
58AddFlowByShifting.FlowMinEtaCut = 0
59AddFlowByShifting.FlowMaxEtaCut = 6.5
60
61AddFlowByShifting.FlowPtSwitch = 0
62AddFlowByShifting.FlowMinPtCut = 0
63AddFlowByShifting.FlowMaxPtCut = 2.0
64
65AddFlowByShifting.custom_v1=0.0000;
66AddFlowByShifting.custom_v2=0.0500;
67AddFlowByShifting.custom_v3=0.0280;
68AddFlowByShifting.custom_v4=0.0130;
69AddFlowByShifting.custom_v5=0.0045;
70AddFlowByShifting.custom_v6=0.0015;
71AddFlowByShifting.FlowBSwitch = 0
72
73
74
75
76# Set output level threshold (2=DEBUG, 3=INFO, 4=WARNING, 5=ERROR, 6=FATAL )
77svcMgr.MessageSvc.OutputLevel = 3
78svcMgr.MessageSvc.defaultLimit = 10000
79#--------------------------------------------------------------
80# Event related parameters
81#--------------------------------------------------------------
82# Number of events to be processed (default is 10)
83theApp.EvtMax = 2
84
85# Set run number (default 0 causes problems)
86svcMgr.EventSelector.RunNumber = 1001
87
88#--------------------------------------------------------------
89# AthenaRoot Persistency
90#--------------------------------------------------------------
91include( 'GeneratorObjectsAthenaPool/GeneratorObjectsAthenaPool_joboptions.py' )
92from AthenaPoolCnvSvc.WriteAthenaPool import AthenaPoolOutputStream
93Stream1 = AthenaPoolOutputStream( "Stream1" )
94# 2101 == EventInfo
95# 133273 == MC Truth (HepMC)
96# 54790518 == HijigEventParams
97Stream1.ItemList += [ "2101#*" ]
98Stream1.ItemList += [ "133273#*" ]
99Stream1.ItemList += [ "54790518#*" ]
100Stream1.OutputFile = "hijing.flow.10-15.pool.root"
101
102#==============================================================
103#
104# End of job options file
105#
106