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','customProcesses','pythiaPromptPhotons','kinematics'),
0013 kinematics = cms.vstring ("CKIN(3)=20",
0014 "CKIN(4)=9999",
0015 "CKIN(7)=-2.",
0016 "CKIN(8)=2."
0017 )
0018
0019 ),
0020 cFlag = cms.int32(0),
0021 bMin = cms.double(0.0),
0022 bMax = cms.double(0.0)
0023 )
0024
0025 generator.embeddingMode = 0
0026
0027 configurationMetadata = cms.untracked.PSet(
0028 version = cms.untracked.string('$Revision: 1.3 $'),
0029 name = cms.untracked.string('$Source: /local/projects/CMSSW/rep/CMSSW/Configuration/Generator/python/Pyquen_GammaJet_pt20_2760GeV_cfi.py,v $'),
0030 annotation = cms.untracked.string('PYQUEN quenched gamma-jets (pt-hat > 20 GeV) at sqrt(s) = 2.76TeV')
0031 )
0032
0033 ProductionFilterSequence = cms.Sequence(generator)