CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_10/src/GeneratorInterface/AlpgenInterface/python/generator_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 
00005 Generator = cms.EDFilter("Pythia6HadronizerFilter",
00006     pythiaHepMCVerbosity = cms.untracked.bool(True),
00007     maxEventsToPrint = cms.untracked.int32(0),
00008     pythiaPylistVerbosity = cms.untracked.int32(1),
00009     comEnergy = cms.double(14000.0),
00010 
00011     PythiaParameters = cms.PSet(
00012         pythiaUESettingsBlock,
00013         processParameters = cms.vstring('MSEL=0          ! User defined processes',
00014                                         'MSTJ(1)=1       ! Fragmentation/hadronization on or off',
00015                                         'MSTJ(11)=3      ! Choice of the fragmentation function'),
00016         # This is a vector of ParameterSet names to be read, in this order
00017         parameterSets = cms.vstring('pythiaUESettings',
00018                                     'processParameters')
00019         ),
00020 
00021     jetMatching = cms.untracked.PSet(
00022         scheme = cms.string("Alpgen"),
00023         applyMatching = cms.bool(True),
00024         exclusive = cms.bool(True),
00025         etMin = cms.double(25.),
00026         drMin = cms.double(0.7)
00027         )
00028 )