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 from Configuration.Generator.Pythia8CommonSettings_cfi import *
0003 from Configuration.Generator.Pythia8CUEP8M1Settings_cfi import *
0004 
0005 generator = cms.EDFilter("Pythia8ConcurrentGeneratorFilter",
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                          # cross section: 20-30 == 326.7, 30-50 == 227.0, 50-80 == 93.17,
0011                          # 80-120 == 31.48, 120-170 == 9.63, 170-230 == 2.92, 230-300 == 0.8852
0012                          # crossSection = cms.untracked.double(691.7852),
0013                          #
0014                          # at 10 TeV it scales down to 426
0015                          #
0016                          crossSection = cms.untracked.double(425.6),
0017                          comEnergy = cms.double(13000.0),
0018                          PythiaParameters = cms.PSet(
0019         pythia8CommonSettingsBlock,
0020         pythia8CUEP8M1SettingsBlock,
0021         processParameters = cms.vstring(
0022             'WeakSingleBoson:ffbar2gmZ = on',
0023             '23:onMode = off',
0024             '23:onIfAny = 13',
0025             'PhaseSpace:pTHatMin = 20.',
0026             'PhaseSpace:pTHatMax = 300.',
0027             'PhaseSpace:mHatMin = 75.',
0028             ),
0029         parameterSets = cms.vstring('pythia8CommonSettings',
0030                                     'pythia8CUEP8M1Settings',
0031                                     'processParameters',
0032                                     )
0033         )
0034                          )
0035 ProductionFilterSequence = cms.Sequence(generator)