CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
PythiaTT_cfi.py
Go to the documentation of this file.
2 
3 
5 generator = cms.EDFilter("Pythia6GeneratorFilter",
6  pythiaHepMCVerbosity = cms.untracked.bool(False),
7  maxEventsToPrint = cms.untracked.int32(0),
8  pythiaPylistVerbosity = cms.untracked.int32(0),
9  filterEfficiency = cms.untracked.double(1.0),
10  comEnergy = cms.double(10000.0),
11  PythiaParameters = cms.PSet(
12  pythiaUESettingsBlock,
13  processParameters = cms.vstring('MSEL = 0 ! User defined processes',
14  'MSUB(81) = 1 ! qqbar to QQbar',
15  'MSUB(82) = 1 ! gg to QQbar',
16  'MSTP(7) = 6 ! flavour = top',
17  'PMAS(6,1) = 175. ! top quark mass'),
18  # This is a vector of ParameterSet names to be read, in this order
19  parameterSets = cms.vstring('pythiaUESettings',
20  'processParameters')
21  )
22 )
23 
24