Skip to content

Commit 7f14a54

Browse files
committed
Change Tau0 max to 10 mm in Pythia8 configurations
1 parent 86354ce commit 7f14a54

File tree

5 files changed

+10
-4
lines changed

5 files changed

+10
-4
lines changed

MC/config/common/pythia8/generator/pythia8_KrKr.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ HeavyIon:bWidth 11. # impact parameter from 0-x [fm]
1313

1414
### decays
1515
ParticleDecays:limitTau0 on
16-
ParticleDecays:tau0Max 0.001
16+
ParticleDecays:tau0Max 10.

MC/config/common/pythia8/generator/pythia8_hf.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ HardQCD:hardbbbar on # scatterings g-g / q-qbar -> b-bbar
99

1010
### decays
1111
ParticleDecays:limitTau0 on
12-
ParticleDecays:tau0Max 0.001
12+
ParticleDecays:tau0Max 10.

MC/config/common/pythia8/generator/pythia8_hi.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ HeavyIon:bWidth 15. # impact parameter from 0-x [fm]
1212

1313
### decays
1414
ParticleDecays:limitTau0 on
15-
ParticleDecays:tau0Max 0.001
15+
ParticleDecays:tau0Max 10.

MC/config/common/pythia8/generator/pythia8_inel.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ SoftQCD:inelastic on # all inelastic processes
88

99
### decays
1010
ParticleDecays:limitTau0 on
11-
ParticleDecays:tau0Max 0.001
11+
ParticleDecays:tau0Max 10.

MC/config/common/pythia8/utils/mkpy8cfg.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,12 @@
9191
fout.write('PromptPhoton:all = on \n')
9292
fout.write('\n')
9393

94+
### decays
95+
fout.write('### decays \n')
96+
fout.write('ParticleDecays:limitTau0 = on \n') ### we will need to put some parameters for these settings
97+
fout.write('ParticleDecays:tau0Max = 10. \n')
98+
fout.write('\n')
99+
94100
### phase space cuts
95101
fout.write('### phase space cuts \n')
96102
if args.ptHatMin is not None :

0 commit comments

Comments
 (0)