Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:03:33

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 from Configuration.Generator.PythiaUESettings_cfi import *
0004 generator = cms.EDFilter("Pythia6GeneratorFilter",
0005     pythiaHepMCVerbosity = cms.untracked.bool(False),
0006     maxEventsToPrint = cms.untracked.int32(0),
0007     pythiaPylistVerbosity = cms.untracked.int32(0),
0008     filterEfficiency = cms.untracked.double(1.0),
0009     comEnergy = cms.double(10000.0),
0010     PythiaParameters = cms.PSet(
0011         pythiaUESettingsBlock,
0012         processParameters = cms.vstring('MSEL=0          ! User defined processes', 
0013             'MSUB(81)=1      ! qq->QQ massive', 
0014             'MSUB(82)=1      ! gg->QQ massive', 
0015             'MSTP(7)=5       ! 5 for BB_bar', 
0016             'CKIN(3)=50.     ! Pt hat lower cut', 
0017             'CKIN(4)=120.    ! Pt hat upper cut', 
0018             'CKIN(13)=0.     ! etamin', 
0019             'CKIN(14)=2.5    ! etamax', 
0020             'CKIN(15)=-2.5   ! -etamax', 
0021             'CKIN(16)=0.     ! -etamin'),
0022         # This is a vector of ParameterSet names to be read, in this order
0023         parameterSets = cms.vstring('pythiaUESettings', 
0024             'processParameters')
0025     )
0026 )