00001 import FWCore.ParameterSet.Config as cms
00002
00003 from GeneratorInterface.Pythia6Interface.pythiaDefault_cff import *
00004 generator = cms.EDFilter("Pythia6GeneratorFilter",
00005 pythiaVerbosity = cms.untracked.bool(False),
00006 comEnergy = cms.double(10000.0),
00007 PythiaParameters = cms.PSet(
00008
00009
00010 pythiaDefaultBlock,
00011
00012 myParameters = cms.vstring('PMAS(32,1)= 5000. !mass of Zprime',
00013 'MSEL=0 !(D=1) to select between full user control (0, then use MSUB) and some preprogrammed alternative',
00014 'MSTP(44) = 3 !only select the Z process',
00015 'MSUB(141) = 1 !ff gamma z0 Z0',
00016 'MSTJ(11)=3 ! Choice of the fragmentation function',
00017 'MSTJ(22)=2 !Decay those unstable particles',
00018 'MSTP(2)=1 !which order running alphaS',
00019 'MSTP(33)=0 !(D=0) inclusion of K factors in (=0: none, i.e. K=1)',
00020 'MSTP(51)=7 !structure function chosen',
00021 'MSTP(81)=1 !multiple parton interactions 1 is Pythia default',
00022 'MSTP(82)=4 !Defines the multi-parton model',
00023 'MSTU(21)=1 !Check on possible errors during program execution',
00024 'PARJ(71)=10. !for which ctau 10 mm',
00025 'PARP(82)=1.9 !pt cutoff for multiparton interactions',
00026 'PARP(89)=1000. !sqrts for which PARP82 is set',
00027 'PARP(84)=0.4 !Multiple interactions: matter distribution Registered by Chris.Seez@cern.ch',
00028 'PARP(90)=0.16 !Multiple interactions: rescaling power Registered by Chris.Seez@cern.ch',
00029 'PMAS(5,1)=4.2 !mass of b quark',
00030 'PMAS(6,1)=175. !mass of top quark',
00031 'PMAS(23,1)=91.187 !mass of Z',
00032 'PMAS(24,1)=80.22 !mass of W',
00033 'MDME(289,1)= 1 !d dbar',
00034 'MDME(290,1)= 1 !u ubar',
00035 'MDME(291,1)= 1 !s sbar',
00036 'MDME(292,1)= 1 !c cbar',
00037 'MDME(293,1)= 0 !b bar',
00038 'MDME(294,1)= 0 !t tbar',
00039 'MDME(295,1)= 0 !4th gen Q Qbar',
00040 'MDME(296,1)= 0 !4th gen Q Qbar',
00041 'MDME(297,1)= 0 !e e',
00042 'MDME(298,1)= 0 !neutrino e e',
00043 'MDME(299,1)= 0 ! mu mu',
00044 'MDME(300,1)= 0 !neutrino mu mu',
00045 'MDME(301,1)= 0 !tau tau',
00046 'MDME(302,1)= 0 !neutrino tau tau',
00047 'MDME(303,1)= 0 !4th generation lepton',
00048 'MDME(304,1)= 0 !4th generation neutrino',
00049 'MDME(305,1)= 0 !W W',
00050 'MDME(306,1)= 0 !H charged higgs',
00051 'MDME(307,1)= 0 !Z',
00052 'MDME(308,1)= 0 !Z',
00053 'MDME(309,1)= 0 !sm higgs',
00054 'MDME(310,1)= 0 !weird neutral higgs HA'),
00055
00056
00057
00058 parameterSets = cms.vstring('pythiaDefault',
00059 'myParameters')
00060 )
00061 )