CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
generator_cfi.py
Go to the documentation of this file.
2 
4 
5 generator = cms.EDFilter("Pythia6HadronizerFilter",
6  pythiaHepMCVerbosity = cms.untracked.bool(True),
7  maxEventsToPrint = cms.untracked.int32(0),
8  pythiaPylistVerbosity = cms.untracked.int32(1),
9  comEnergy = cms.double(14000.0),
10 
11  PythiaParameters = cms.PSet(
12  pythiaUESettingsBlock,
13  processParameters = cms.vstring('MSEL=0 ! User defined processes',
14  'MSTJ(1)=1 ! Fragmentation/hadronization on or off',
15  'MSTJ(11)=3 ! Choice of the fragmentation function'),
16  # This is a vector of ParameterSet names to be read, in this order
17  parameterSets = cms.vstring('pythiaUESettings',
18  'processParameters')
19  ),
20 
21  jetMatching = cms.untracked.PSet(
22  scheme = cms.string("Alpgen"),
23  applyMatching = cms.bool(True),
24  exclusive = cms.bool(True),
25  etMin = cms.double(25.),
26  drMin = cms.double(0.7)
27  )
28 )