-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #192 from EmanuelPerez/winter2023
Pythia card to process LHE events created by KKMC (with ISR, FSR and BES done by KKMC)
- Loading branch information
Showing
1 changed file
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
|
||
! 1) Settings that will be used in a main program. | ||
Random:setSeed = on | ||
Main:timesAllowErrors = 5 ! how many aborts before run stops | ||
|
||
! 2) Settings related to output in init(), next() and stat() functions. | ||
Init:showChangedSettings = on ! list changed settings | ||
Init:showAllSettings = off ! list all settings | ||
Init:showChangedParticleData = on ! list changed particle data | ||
Init:showAllParticleData = off ! list all particle data | ||
Next:numberCount = 10 ! print message every n events | ||
Next:numberShowLHA = 10 ! print LHA information n times | ||
Next:numberShowInfo = 10 ! print event information n times | ||
Next:numberShowProcess = 10 ! print process record n times | ||
Next:numberShowEvent = 10 ! print event record n times | ||
Stat:showPartonLevel = off ! additional statistics on MPI | ||
|
||
! 3) Tell Pythia that LHEF input is used | ||
Beams:frameType = 4 | ||
Beams:setProductionScalesFromLHEF = off | ||
Beams:allowMomentumSpread = off | ||
Beams:LHEF = LHE_OUT.LHE | ||
|
||
! Vertex smearing | ||
Beams:allowVertexSpread = on | ||
Beams:sigmaVertexX = 5.96e-3 | ||
Beams:sigmaVertexY = 23.8E-6 | ||
Beams:sigmaVertexZ = 0.397 | ||
Beams:sigmaTime = 10.89 ! 36.3 ps | ||
|
||
! 4) Settings for the event generation process in the Pythia8 library. | ||
PartonLevel:ISR = off ! initial-state radiation | ||
PartonLevel:FSR = off ! final-state radiation | ||
|
||
Check:epTolErr = 1e-1 ! default 1e-4, necessary to allow BES | ||
LesHouches:matchInOut = off | ||
|
||
|
||
|