CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_14/src/FastSimulation/Configuration/python/QCDpt600_800_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 from Configuration.Generator.PythiaUESettings_cfi import *
00004 
00005 source = cms.Source("EmptySource")
00006 
00007 Generator = cms.EDFilter("Pythia6GeneratorFilter",
00008     comEnergy = cms.double(14000.),
00009     pythiaHepMCVerbosity = cms.untracked.bool(False),
00010     maxEventsToPrint = cms.untracked.int32(0),
00011     pythiaPylistVerbosity = cms.untracked.int32(0),
00012     PythiaParameters = cms.PSet(
00013         pythiaUESettingsBlock,
00014         processParameters = cms.vstring('MSEL=1               ! QCD hight pT processes', 
00015             'CKIN(3)=600.          ! minimum pt hat for hard interactions', 
00016             'CKIN(4)=800.          ! maximum pt hat for hard interactions'),
00017         parameterSets = cms.vstring('pythiaUESettings', 
00018             'processParameters')
00019     )
00020 )
00021 
00022 ProductionFilterSequence = cms.Sequence(Generator)