Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002
00003 from Configuration.Generator.PyquenDefaultSettings_cff import *
00004
00005 hiSignal = cms.EDFilter("PyquenGeneratorFilter",
00006 collisionParameters,
00007 qgpParameters,
00008 pyquenParameters,
00009 doQuench = cms.bool(True),
00010 bFixed = cms.double(0.0),
00011 PythiaParameters = cms.PSet(pyquenPythiaDefaultBlock,
00012 parameterSets = cms.vstring('pythiaUESettings','ppJets','kinematics'),
00013 kinematics = cms.vstring ("CKIN(3)=80",
00014 "CKIN(4)=120"
00015 )
00016 ),
00017 cFlag = cms.int32(0),
00018 bMin = cms.double(0.0),
00019 bMax = cms.double(0.0)
00020 )
00021
00022 hiSignal.embeddingMode = True
00023
00024 configurationMetadata = cms.untracked.PSet(
00025 version = cms.untracked.string('$Revision: 1.2 $'),
00026 name = cms.untracked.string('$Source: /cvs_server/repositories/CMSSW/CMSSW/Configuration/Generator/python/Pyquen_DiJet_pt80to120_2760GeV_cfi.py,v $'),
00027 annotation = cms.untracked.string('PYQUEN quenched dijets (80 < pt-hat < 120 GeV) at sqrt(s) = 2.76TeV')
00028 )
00029
00030 ProductionFilterSequence = cms.Sequence(hiSignal)