Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002
00003 from Configuration.Generator.PythiaUEZ2starSettings_cfi import *
00004 Generator = cms.EDFilter("Pythia6GeneratorFilter",
00005 pythiaPylistVerbosity = cms.untracked.int32(0),
00006 filterEfficiency = cms.untracked.double(1.0),
00007 pythiaHepMCVerbosity = cms.untracked.bool(False),
00008 crossSection = cms.untracked.double(16540.0),
00009 comEnergy = cms.double(14000.0),
00010 maxEventsToPrint = cms.untracked.int32(0),
00011 PythiaParameters = cms.PSet(
00012 pythiaUESettingsBlock,
00013 processParameters = cms.vstring('MSEL = 0 !User defined processes',
00014 'MSUB(2) = 1 !W production',
00015 'MDME(190,1) = 0 !W decay into dbar u',
00016 'MDME(191,1) = 0 !W decay into dbar c',
00017 'MDME(192,1) = 0 !W decay into dbar t',
00018 'MDME(194,1) = 0 !W decay into sbar u',
00019 'MDME(195,1) = 0 !W decay into sbar c',
00020 'MDME(196,1) = 0 !W decay into sbar t',
00021 'MDME(198,1) = 0 !W decay into bbar u',
00022 'MDME(199,1) = 0 !W decay into bbar c',
00023 'MDME(200,1) = 0 !W decay into bbar t',
00024 'MDME(206,1) = 1 !W decay into e+ nu_e',
00025 'MDME(207,1) = 0 !W decay into mu+ nu_mu',
00026 'MDME(208,1) = 0 !W decay into tau+ nu_tau'),
00027
00028 parameterSets = cms.vstring('pythiaUESettings',
00029 'processParameters')
00030 )
00031 )