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                          pythiaHepMCVerbosity = cms.untracked.bool(False),
0007                          maxEventsToPrint = cms.untracked.int32(0),
0008                          pythiaPylistVerbosity = cms.untracked.int32(1),
0009                          filterEfficiency = cms.untracked.double(0.037),
0010                          crossSection = cms.untracked.double(74310000.),
0011                          comEnergy = cms.double(13000.0),  # center of mass energy in GeV
0012                          PythiaParameters = cms.PSet(
0013         pythia8CommonSettingsBlock,
0014         pythia8CUEP8M1SettingsBlock,
0015         processParameters = cms.vstring(
0016             'HardQCD:all = on',
0017             'PhaseSpace:pTHatMin = 3000.',
0018             'PhaseSpace:pTHatMax = 3500.'
0019             ),
0020         parameterSets = cms.vstring('pythia8CommonSettings',
0021                                     'pythia8CUEP8M1Settings',
0022                                     'processParameters',
0023                                     )
0024         )
0025                          )
0026