00001 import FWCore.ParameterSet.Config as cms
00002
00003 from Configuration.Generator.PythiaUESettings_cfi import *
00004 Generator = cms.EDFilter("Pythia6GeneratorFilter",
00005 pythiaHepMCVerbosity = cms.untracked.bool(False),
00006 maxEventsToPrint = cms.untracked.int32(0),
00007 pythiaPylistVerbosity = cms.untracked.int32(0),
00008 filterEfficiency = cms.untracked.double(1.0),
00009 comEnergy = cms.double(7000.0),
00010 PythiaParameters = cms.PSet(
00011 pythiaUESettingsBlock,
00012 processParameters = cms.vstring('PMAS(25,1)=200.0 !mass of Higgs',
00013 'MSEL=0 !(D=1) to select between full user control (0, then use MSUB) and some preprogrammed alternative: QCD hight pT processes (1, then ISUB=11, 12, 13, 28, 53, 68), QCD low pT processes (2, then ISUB=11, 12, 13, 28, 53, 68, 91, 92, 94, 95)',
00014 'MSUB(102)=1 !ggH',
00015 'MSUB(123)=1 !ZZ fusion to H',
00016 'MSUB(124)=1 !WW fusion to H',
00017 'CKIN(45)=5. !high mass cut on m2 in 2 to 2 process Registered by Chris.Seez@cern.ch',
00018 'CKIN(46)=150. !high mass cut on secondary resonance m1 in 2->1->2 process Registered by Alexandre.Nikitenko@cern.ch',
00019 'CKIN(47)=5. !low mass cut on secondary resonance m2 in 2->1->2 process Registered by Alexandre.Nikitenko@cern.ch',
00020 'CKIN(48)=150. !high mass cut on secondary resonance m2 in 2->1->2 process Registered by Alexandre.Nikitenko@cern.ch',
00021 'MDME(174,1)=0 !Z decay into d dbar',
00022 'MDME(175,1)=0 !Z decay into u ubar',
00023 'MDME(176,1)=0 !Z decay into s sbar',
00024 'MDME(177,1)=0 !Z decay into c cbar',
00025 'MDME(178,1)=0 !Z decay into b bbar',
00026 'MDME(179,1)=0 !Z decay into t tbar',
00027 'MDME(182,1)=1 !Z decay into e- e+',
00028 'MDME(183,1)=0 !Z decay into nu_e nu_ebar',
00029 'MDME(184,1)=1 !Z decay into mu- mu+',
00030 'MDME(185,1)=0 !Z decay into nu_mu nu_mubar',
00031 'MDME(186,1)=1 !Z decay into tau- tau+',
00032 'MDME(187,1)=0 !Z decay into nu_tau nu_taubar',
00033 'MDME(210,1)=0 !Higgs decay into dd',
00034 'MDME(211,1)=0 !Higgs decay into uu',
00035 'MDME(212,1)=0 !Higgs decay into ss',
00036 'MDME(213,1)=0 !Higgs decay into cc',
00037 'MDME(214,1)=0 !Higgs decay into bb',
00038 'MDME(215,1)=0 !Higgs decay into tt',
00039 'MDME(216,1)=0 !Higgs decay into',
00040 'MDME(217,1)=0 !Higgs decay into Higgs decay',
00041 'MDME(218,1)=0 !Higgs decay into e nu e',
00042 'MDME(219,1)=0 !Higgs decay into mu nu mu',
00043 'MDME(220,1)=0 !Higgs decay into tau nu tau',
00044 'MDME(221,1)=0 !Higgs decay into Higgs decay',
00045 'MDME(222,1)=0 !Higgs decay into g g',
00046 'MDME(223,1)=0 !Higgs decay into gam gam',
00047 'MDME(224,1)=0 !Higgs decay into gam Z',
00048 'MDME(225,1)=1 !Higgs decay into Z Z',
00049 'MDME(226,1)=0 !Higgs decay into W W'),
00050
00051 parameterSets = cms.vstring('pythiaUESettings',
00052 'processParameters')
00053 )
00054 )