File indexing completed on 2024-04-06 12:03:36
0001 import FWCore.ParameterSet.Config as cms
0002
0003 from Configuration.Generator.PyquenDefaultSettings_cff import *
0004
0005 generator = cms.EDFilter("PyquenGeneratorFilter",
0006 collisionParameters5362GeV,
0007 qgpParameters,
0008 pyquenParameters,
0009 doQuench = cms.bool(True),
0010 bFixed = cms.double(0.0),
0011 PythiaParameters = cms.PSet(pyquenPythiaDefaultBlock,
0012 parameterSets = cms.vstring('pythiaUESettings','ppJets','kinematics'),
0013 kinematics = cms.vstring ("CKIN(3)=80",
0014 "CKIN(4)=120"
0015 )
0016 ),
0017 cFlag = cms.int32(0),
0018 bMin = cms.double(0.0),
0019 bMax = cms.double(0.0)
0020 )
0021
0022 configurationMetadata = cms.untracked.PSet(
0023 version = cms.untracked.string('$Revision: 1.2 $'),
0024 name = cms.untracked.string('$Source: /local/projects/CMSSW/rep/CMSSW/Configuration/Generator/python/Pyquen_DiJet_pt80to120_2760GeV_cfi.py,v $'),
0025 annotation = cms.untracked.string('PYQUEN quenched dijets (80 < pt-hat < 120 GeV) at sqrt(s) = 2.76TeV')
0026 )
0027
0028 ProductionFilterSequence = cms.Sequence(generator)