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", "2760")
0008 
0009 generator = ExternalGeneratorFilter(cms.EDFilter("PyquenGeneratorFilter",
0010                          locals()[f"collisionParameters{hjenergy}GeV"],   #tune CELLO
0011                          locals()[f"qgpParameters{hjenergy}GeV"],         #tune CELLO
0012                          pyquenParameters,
0013                          doQuench = cms.bool(True),
0014                          bFixed = cms.double(0.0), ## fixed impact param (fm); valid only if cflag_=0
0015                          PythiaParameters = cms.PSet(pyquenPythiaDefaultBlock,
0016                                                      parameterSets = cms.vstring('pythiaUESettings','ppJets','kinematics'),
0017                                                      kinematics = cms.vstring ("CKIN(3)=80",  #min pthat
0018                                                                                "CKIN(4)=120" #max pthat
0019                                                                                )
0020                                                      ),
0021                          cFlag = cms.int32(0), ## centrality flag
0022                          bMin = cms.double(0.0), ## min impact param (fm); valid only if cflag_!=0
0023                          bMax = cms.double(0.0) ## max impact param (fm); valid only if cflag_!=0
0024                          ))
0025 
0026 configurationMetadata = cms.untracked.PSet(
0027     version = cms.untracked.string('$Revision: 1.2 $'),
0028     name = cms.untracked.string('$Source: /local/projects/CMSSW/rep/CMSSW/Configuration/Generator/python/Pyquen_DiJet_pt80to120_2760GeV_cfi.py,v $'),
0029     annotation = cms.untracked.string('PYQUEN quenched dijets (80 < pt-hat < 120 GeV) at sqrt(s) = 2.76TeV')
0030     )
0031 
0032 ProductionFilterSequence = cms.Sequence(generator)