1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
import FWCore.ParameterSet.Config as cms
from Configuration.Generator.Pyquen2025Settings_cff import *
from GeneratorInterface.Core.ExternalGeneratorFilter import ExternalGeneratorFilter
import os
hjenergy = os.getenv("HJENERGY", "5020")
generator = ExternalGeneratorFilter(cms.EDFilter("HydjetGeneratorFilter",
locals()[f"collisionParameters{hjenergy}GeV"], #tune CELLO
locals()[f"qgpParameters{hjenergy}GeV"], #tune CELLO
locals()[f"hydjetParameters{hjenergy}GeV"], #tune CELLO
hydjetMode = cms.string('kHydroQJets'),
PythiaParameters = cms.PSet(pyquenPythiaDefaultBlock,
# Quarkonia and Weak Bosons added back upon dilepton group's request.
parameterSets = cms.vstring('pythiaUESettings',
'hydjetPythiaDefault'+hjenergy, #tune CELLO
'myParameters',
'pythiaJets',
'pythiaPromptPhotons',
'pythiaZjets',
'pythiaBottomoniumNRQCD',
'pythiaCharmoniumNRQCD',
'pythiaQuarkoniaSettings',
'pythiaWeakBosons'
)
),
cFlag = cms.int32(1),
bMin = cms.double(0),
bMax = cms.double(22),
bFixed = cms.double(0)
))
|