CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_2_7_hltpatch2/src/SimG4CMS/Calo/python/PythiaTT_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 
00004 from Configuration.Generator.PythiaUESettings_cfi import *
00005 Generator = cms.EDFilter("Pythia6GeneratorFilter",
00006     pythiaHepMCVerbosity = cms.untracked.bool(False),
00007     maxEventsToPrint = cms.untracked.int32(0),
00008     pythiaPylistVerbosity = cms.untracked.int32(0),
00009     filterEfficiency = cms.untracked.double(1.0),
00010     comEnergy = cms.double(10000.0),
00011     PythiaParameters = cms.PSet(
00012         pythiaUESettingsBlock,
00013         processParameters = cms.vstring('MSEL      = 0     ! User defined processes',
00014             'MSUB(81)  = 1     ! qqbar to QQbar',
00015             'MSUB(82)  = 1     ! gg to QQbar',
00016             'MSTP(7)   = 6     ! flavour = top',
00017             'PMAS(6,1) = 175.  ! top quark mass'),
00018         # This is a vector of ParameterSet names to be read, in this order
00019         parameterSets = cms.vstring('pythiaUESettings',
00020             'processParameters')
00021     )
00022 )
00023 
00024