File indexing completed on 2024-04-06 12:03:36
0001 import FWCore.ParameterSet.Config as cms
0002
0003 from Configuration.Generator.PythiaUESettings_cfi import *
0004
0005 generator = cms.EDFilter("Pythia6GeneratorFilter",
0006 pythiaPylistVerbosity = cms.untracked.int32(1),
0007 filterEfficiency = cms.untracked.double(1.0),
0008 pythiaHepMCVerbosity = cms.untracked.bool(False),
0009 comEnergy = cms.double(10000.0),
0010 crossSection = cms.untracked.double(17.52),
0011 maxEventsToPrint = cms.untracked.int32(0),
0012 PythiaParameters = cms.PSet(
0013 pythiaUESettingsBlock,
0014 processParameters = cms.vstring('PMAS(6,1)=172.3 ! t quark mass',
0015 'PMAS(347,1)= 750.0 ! graviton mass',
0016 'PARP(50)=0.54 ! c(k/Mpl) * 5.4',
0017 'MSEL=0 ! User defined processes',
0018 'MSUB(391)=1 ! ffbar->G*',
0019 'MSUB(392)=1 ! gg->G*',
0020 '5000039:ALLOFF ! Turn off graviton decays',
0021 '5000039:ONIFANY 1 2 3 4 5 11 13 ! graviton decays into quarks (except top) and leptons ',
0022 'CKIN(3)=25. ! Pt hat lower cut',
0023 'CKIN(4)=-1. ! Pt hat upper cut',
0024 'CKIN(13)=-10. ! etamin',
0025 'CKIN(14)=10. ! etamax',
0026 'CKIN(15)=-10. ! -etamax',
0027 'CKIN(16)=10. ! -etamin'),
0028 parameterSets = cms.vstring('pythiaUESettings',
0029 'processParameters')
0030 )
0031 )