Back to home page

Project CMSSW displayed by LXR

 
 

    


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

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                          pythiaPylistVerbosity = cms.untracked.int32(0),
0007                          filterEfficiency = cms.untracked.double(1.0),
0008                          pythiaHepMCVerbosity = cms.untracked.bool(False),
0009                          comEnergy = cms.double(8000.0),
0010                          maxEventsToPrint = cms.untracked.int32(0),
0011                          PythiaParameters = cms.PSet(
0012         pythia8CommonSettingsBlock,
0013         pythia8CUEP8M1SettingsBlock,
0014         processParameters = cms.vstring(
0015             'HardQCD:all = on',
0016             'PhaseSpace:pTHatMin = 30.',
0017             'PhaseSpace:pTHatMax = 50.'
0018             ),
0019         parameterSets = cms.vstring('pythia8CommonSettings',
0020                                     'pythia8CUEP8M1Settings',
0021                                     'processParameters',
0022                                     )
0023         )
0024                          )