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     pythiaPylistVerbosity = cms.untracked.int32(0),
0006     # put here the efficiency of your filter (1. if no filter)
0007     filterEfficiency = cms.untracked.double(0.00045),
0008     pythiaHepMCVerbosity = cms.untracked.bool(False),
0009     comEnergy = cms.double(10000.0),
0010     # put here the cross section of your process (in pb)
0011     crossSection = cms.untracked.double(54700000000.0),
0012     maxEventsToPrint = cms.untracked.int32(0),
0013     PythiaParameters = cms.PSet(
0014         pythiaUESettingsBlock,
0015         processParameters = cms.vstring('PMAS(5,1)=4.8          ! b quark mass', 
0016             'MSEL=1                 ! Min Bias', 
0017             'MDME(953,2) = 0        ! PHASE SPACE', 
0018             'BRAT(953)   = 1.       ! BRANCHING FRACTION', 
0019             'KFDP(953,1) =  13      ! mu-', 
0020             'KFDP(953,2) = -13      ! mu+', 
0021             'KFDP(953,3) = 0        ! nada', 
0022             'KFDP(953,4) = 0        ! nada', 
0023             'KFDP(953,5) = 0        ! nada', 
0024             'PMAS(140,1) = 5.369', 
0025             'MDME(953,1) = 0        ', 
0026             'MDME(954,1) = 0        ', 
0027             'MDME(955,1) = 0        ', 
0028             'MDME(956,1) = 0        ', 
0029             'MDME(957,1) = 0        ', 
0030             'MDME(958,1) = 0        ', 
0031             'MDME(959,1) = 0        ', 
0032             'MDME(960,1) = 0        ', 
0033             'MDME(961,1) = 0        ', 
0034             'MDME(962,1) = 0        ', 
0035             'MDME(963,1) = 0        ', 
0036             'MDME(964,1) = 0        ', 
0037             'MDME(965,1) = 0        ', 
0038             'MDME(966,1) = 0        ', 
0039             'MDME(967,1) = 0        ', 
0040             'MDME(968,1) = 0        ', 
0041             'MDME(969,1) = 0        ', 
0042             'MDME(970,1) = 0        ', 
0043             'MDME(971,1) = 0        ', 
0044             'MDME(972,1) = 0        ', 
0045             'MDME(973,1) = 0        ', 
0046             'MDME(974,1) = 0        ', 
0047             'MDME(975,1) = 0        ', 
0048             'MDME(976,1) = 0        ', 
0049             'MDME(977,1) = 0        ', 
0050             'MDME(978,1) = 0        ', 
0051             'MDME(979,1) = 0        ', 
0052             'MDME(980,1) = 0        ', 
0053             'MDME(981,1) = 0        ', 
0054             'MDME(982,1) = 0        ', 
0055             'MDME(983,1) = 0        ', 
0056             'MDME(984,1) = 0        ', 
0057             'MDME(985,1) = 0        ', 
0058             'MDME(986,1) = 0        ', 
0059             'MDME(987,1) = 0        ', 
0060             'MDME(988,1) = 0        ', 
0061             'MDME(989,1) = 0        ', 
0062             'MDME(990,1) = 0        ', 
0063             'MDME(991,1) = 0        ', 
0064             'MDME(953,1) = 1       !  Bs -> mu mu '),
0065         # This is a vector of ParameterSet names to be read, in this order 
0066         # The first one sets some defaults 
0067         # The second one are the user specific parameters 
0068         parameterSets = cms.vstring('pythiaUESettings', 
0069             'processParameters')
0070     )
0071 )