Skip to content

Commit

Permalink
Merge pull request #36918 from wouf/from-CMSSW_12_3_X_2022-02-08-1100
Browse files Browse the repository at this point in the history
bug fixes for Hydjets and Pyquen
  • Loading branch information
cmsbuild committed Feb 15, 2022
2 parents 848ec52 + 4ed1ac9 commit 0cd52af
Show file tree
Hide file tree
Showing 16 changed files with 62 additions and 613 deletions.
Expand Up @@ -12,17 +12,16 @@
doRadiativeEnLoss = cms.bool(True), ## if true, perform partonic radiative en loss
doCollisionalEnLoss = cms.bool(True),
qgpNumQuarkFlavor = cms.int32(0), ## number of active quark flavors in qgp; allowed values: 0,1,2,3
numQuarkFlavor = cms.int32(0), ## to be removed
sigmaInelNN = cms.double(70),
sigmaInelNN = cms.double(70),
shadowingSwitch = cms.int32(1),
nMultiplicity = cms.int32(18545),
fracSoftMultiplicity = cms.double(1.),
maxLongitudinalRapidity = cms.double(3.75),
maxTransverseRapidity = cms.double(1.16),
angularSpectrumSelector = cms.int32(1),
angularSpectrumSelector = cms.int32(1),
rotateEventPlane = cms.bool(True),
allowEmptyEvents = cms.bool(False),
embeddingMode = cms.bool(False),
embeddingMode = cms.int32(0),
hydjetMode = cms.string('kHydroQJets'),

PythiaParameters = cms.PSet(
Expand Down
244 changes: 0 additions & 244 deletions Configuration/Generator/python/Pyquen2013Settings_cff.py

This file was deleted.

1 change: 0 additions & 1 deletion Configuration/Generator/python/Pyquen2015Settings_cff.py
Expand Up @@ -22,7 +22,6 @@
doRadiativeEnLoss = cms.bool(True), ## if true, perform partonic radiative en loss
doCollisionalEnLoss = cms.bool(True),
qgpNumQuarkFlavor = cms.int32(0), ## number of active quark flavors in qgp; allowed values: 0,1,2,3
numQuarkFlavor = cms.int32(0) ## to be removed
)

pyquenParameters = cms.PSet(doIsospin = cms.bool(True),
Expand Down
Expand Up @@ -20,7 +20,6 @@
doRadiativeEnLoss = cms.bool(True), ## if true, perform partonic radiative en loss
doCollisionalEnLoss = cms.bool(False),
qgpNumQuarkFlavor = cms.int32(0), ## number of active quark flavors in qgp; allowed values: 0,1,2,3
numQuarkFlavor = cms.int32(0) ## to be removed
)

pyquenParameters = cms.PSet(doIsospin = cms.bool(True),
Expand Down
Expand Up @@ -22,7 +22,7 @@
bMax = cms.double(0.0) ## max impact param (fm); valid only if cflag_!=0
)

generator.embeddingMode = False
generator.embeddingMode = 0

configurationMetadata = cms.untracked.PSet(
version = cms.untracked.string('$Revision: 1.3 $'),
Expand Down
Expand Up @@ -25,7 +25,7 @@
from GeneratorInterface.Core.ExternalGeneratorFilter import ExternalGeneratorFilter
generator = ExternalGeneratorFilter(_generator)

_generator.embeddingMode = False
_generator.embeddingMode = 0

configurationMetadata = cms.untracked.PSet(
version = cms.untracked.string('$Revision: 1.3 $'),
Expand Down
Expand Up @@ -22,7 +22,7 @@
bMax = cms.double(0.0) ## max impact param (fm); valid only if cflag_!=0
)

generator.embeddingMode = False
generator.embeddingMode = 0

configurationMetadata = cms.untracked.PSet(
version = cms.untracked.string('$Revision: 1.3 $'),
Expand Down

0 comments on commit 0cd52af

Please sign in to comment.