CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_2_9/src/Configuration/Generator/python/TTbar_7TeV_cfi.py

Go to the documentation of this file.
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('MSEL      = 0     ! User defined processes', 
00013             'MSUB(81)  = 1     ! qqbar to QQbar', 
00014             'MSUB(82)  = 1     ! gg to QQbar', 
00015             'MSTP(7)   = 6     ! flavour = top', 
00016             'PMAS(6,1) = 175.  ! top quark mass'),
00017         # This is a vector of ParameterSet names to be read, in this order
00018         parameterSets = cms.vstring('pythiaUESettings', 
00019             'processParameters')
00020     )
00021 )