-
Notifications
You must be signed in to change notification settings - Fork 4.3k
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 #44549 from hjbossi/confiPythiaPhotonFlux
Make PYTHIA 8 photon flux more configurable.
- Loading branch information
Showing
5 changed files
with
75 additions
and
72 deletions.
There are no files selected for viewing
32 changes: 32 additions & 0 deletions
32
Configuration/Generator/python/Pythia8PhotonFluxSettings_cfi.py
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,32 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
# configuration for photon flux in PbPb | ||
PhotonFlux_PbPb = cms.PSet( | ||
beamTypeA = cms.int32(1000822080), | ||
beamTypeB = cms.int32(1000822080), | ||
radiusA = cms.untracked.double(6.636), | ||
radiusB = cms.untracked.double(6.636), | ||
zA = cms.untracked.int32(82), | ||
zB = cms.untracked.int32(82) | ||
) | ||
|
||
# configuration for photon flux in OO | ||
PhotonFlux_OO = cms.PSet( | ||
beamTypeA = cms.int32(80160), | ||
beamTypeB = cms.int32(80160), | ||
radiusA = cms.untracked.double(3.02), | ||
radiusB = cms.untracked.double(3.02), | ||
zA = cms.untracked.int32(8), | ||
zB = cms.untracked.int32(8) | ||
) | ||
|
||
# configuration for photon flux in XeXe | ||
# radius from charged particle raa: https://arxiv.org/pdf/1809.00201.pdf | ||
PhotonFlux_XeXe = cms.PSet( | ||
beamTypeA = cms.int32(5418), | ||
beamTypeB = cms.int32(5418), | ||
radiusA = cms.untracked.double(5.4), | ||
radiusB = cms.untracked.double(5.4), | ||
zA = cms.untracked.int32(54), | ||
zB = cms.untracked.int32(54) | ||
) |
3 changes: 2 additions & 1 deletion
3
Configuration/Generator/python/Pythia8_GammaNucleus_5p36TeV_cfi.py
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
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
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
28 changes: 3 additions & 25 deletions
28
GeneratorInterface/Pythia8Interface/test/pythia8ex2_ConvertToMain70_cfg_Fragment.py
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