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                          comEnergy = cms.double(13000.0),
0011                          PythiaParameters = cms.PSet(
0012         pythia8CommonSettingsBlock,
0013         pythia8CUEP8M1SettingsBlock,
0014         processParameters = cms.vstring(
0015             'WeakSingleBoson:ffbar2gmZ = on',
0016             '23:onMode = off',
0017             '23:onIfAny = 15',
0018             'PhaseSpace:mHatMin = 75.',
0019             '15:offIfMatch = 16 11 -12 ',
0020             '15:offIfMatch = 16 13 -14 ',
0021             ),
0022         parameterSets = cms.vstring('pythia8CommonSettings',
0023                                     'pythia8CUEP8M1Settings',
0024                                     'processParameters',
0025                                     )
0026         )
0027                          )
0028