Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 from Configuration.Generator.PythiaUESettings_cfi import *
0004 # Input source
0005 generator = cms.EDFilter("Pythia6GeneratorFilter",
0006     pythiaHepMCVerbosity = cms.untracked.bool(False),
0007     maxEventsToPrint = cms.untracked.int32(0),
0008     pythiaPylistVerbosity = cms.untracked.int32(0),
0009     filterEfficiency = cms.untracked.double(1.0),
0010 
0011     # cross section: 20-30 == 326.7, 30-50 == 227.0, 50-80 == 93.17,
0012     # 80-120 == 31.48, 120-170 == 9.63, 170-230 == 2.92, 230-300 == 0.8852
0013 #    crossSection = cms.untracked.double(691.7852),
0014     #
0015     # at 10 TeV it scales down to 426
0016     #
0017     crossSection = cms.untracked.double(425.6),
0018     comEnergy = cms.double(10000.0),
0019     PythiaParameters = cms.PSet(
0020     pythiaUESettingsBlock,
0021 
0022     processParameters = cms.vstring('MSEL=0       !User defined processes', 
0023                                     'MSUB(15)=1   ', 
0024                                     'MSUB(30)=1   ', 
0025                                     'MDME(174,1)=0     !Z decay into d dbar',
0026                                     'MDME(175,1)=0     !Z decay into u ubar',
0027                                     'MDME(176,1)=0     !Z decay into s sbar',
0028                                     'MDME(177,1)=0     !Z decay into c cbar',
0029                                     'MDME(178,1)=0     !Z decay into b bbar',
0030                                     'MDME(179,1)=0     !Z decay into t tbar',
0031                                     'MDME(182,1)=0     !Z decay into e- e+',
0032                                     'MDME(183,1)=0     !Z decay into nu_e nu_ebar',
0033                                     'MDME(184,1)=1     !Z decay into mu- mu+',
0034                                     'MDME(185,1)=0     !Z decay into nu_mu nu_mubar',
0035                                     'MDME(186,1)=0     !Z decay into tau- tau+',
0036                                     'MDME(187,1)=0     !Z decay into nu_tau nu_taubar',
0037                                     'CKIN(3)=20.          ! minimum pt hat for hard interactions', 
0038                                     'CKIN(4)=300.          ! maximum pt hat for hard interactions'),
0039 
0040     # This is a vector of ParameterSet names to be read, in this order
0041     parameterSets = cms.vstring('pythiaUESettings', 
0042                                 'processParameters')
0043     
0044     )
0045 )
0046 
0047 configurationMetadata = cms.untracked.PSet(
0048     version = cms.untracked.string('$Revision: 1.4 $'),
0049     name = cms.untracked.string('$Source: /cvs_server/repositories/CMSSW/CMSSW/Configuration/Generator/python/ZmumuJets_Pt_20_300_GEN_cfg.py,v $'),
0050     annotation = cms.untracked.string('ZmumuJets pt hat 20-300')
0051 )