Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2025-04-25 02:43:15

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 from Configuration.Generator.Pyquen2025Settings_cff import *
0004 from GeneratorInterface.Core.ExternalGeneratorFilter import ExternalGeneratorFilter
0005 import os
0006 
0007 hjenergy = os.getenv("HJENERGY", "5519")
0008 
0009 generator = ExternalGeneratorFilter(cms.EDFilter("HydjetGeneratorFilter",
0010                          locals()[f"collisionParameters{hjenergy}GeV"],   #tune CELLO
0011                          locals()[f"qgpParameters{hjenergy}GeV"],         #tune CELLO
0012                          locals()[f"hydjetParameters{hjenergy}GeV"],      #tune CELLO
0013                          hydjetMode = cms.string('kHydroQJets'),
0014                          PythiaParameters = cms.PSet(pyquenPythiaDefaultBlock,
0015                                                      # Quarkonia and Weak Bosons added back upon dilepton group's request.
0016                                                      parameterSets = cms.vstring('pythiaUESettings',
0017                                                                                  'hydjetPythiaDefault'+hjenergy, #tune CELLO
0018                                                                                  'myParameters',
0019                                                                                  'pythiaJets',
0020                                                                                  'pythiaPromptPhotons',
0021                                                                                  'pythiaZjets',
0022                                                                                  'pythiaBottomoniumNRQCD',
0023                                                                                  'pythiaCharmoniumNRQCD',
0024                                                                                  'pythiaQuarkoniaSettings',
0025                                                                                  'pythiaWeakBosons'
0026                                                                                  )
0027                                                      ),
0028                          cFlag = cms.int32(1),
0029                          bMin = cms.double(0),
0030                          bMax = cms.double(22),
0031                          bFixed = cms.double(0)
0032                          ))