Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bug fixes for Hydjets and Pyquen #36918

Merged
merged 2 commits into from
Feb 15, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Loading