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 
0003 from Configuration.Generator.Pythia8CommonSettings_cfi import *
0004 from Configuration.Generator.MCTunes2017.PythiaCP5Settings_cfi import *
0005 
0006 
0007 generator = cms.EDFilter("Pythia8ConcurrentGeneratorFilter",
0008         comEnergy = cms.double(14000.0),
0009         crossSection = cms.untracked.double(2.0221e+09),
0010         filterEfficiency = cms.untracked.double(1.0),
0011         maxEventsToPrint = cms.untracked.int32(1),
0012         pythiaHepMCVerbosity = cms.untracked.bool(False),
0013         pythiaPylistVerbosity = cms.untracked.int32(1),
0014         #reweightGen = cms.bool(
0015         #                pTRef = cms.double(15.0),
0016         #                power = cms.double(4.5)
0017         #                ), #
0018 
0019         PythiaParameters = cms.PSet(
0020                 pythia8CommonSettingsBlock,
0021                 pythia8CP5SettingsBlock,
0022                 processParameters = cms.vstring(
0023                         'HardQCD:all = on',
0024                         'PhaseSpace:pTHatMin = 15',
0025                         'PhaseSpace:pTHatMax = 7000',
0026                         'PhaseSpace:bias2Selection = on',
0027                         'PhaseSpace:bias2SelectionPow = 6.0',
0028                         'PhaseSpace:bias2SelectionRef = 15.',
0029 
0030                 ),
0031                 parameterSets = cms.vstring('pythia8CommonSettings',
0032                                             'pythia8CP5Settings',
0033                                             'processParameters'
0034                                             )
0035         )
0036 )