Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 # https://github.com/cms-sw/genproductions/blob/310c3d77c1062b46004c6d253ebf5437ff5858fa/python/ThirteenTeV/Higgs/Hadronizer_TuneCUETP8M1_13TeV_powhegEmissionVeto_3p_HToBB_M-125_LHE_pythia8_cff.py
0002 
0003 import FWCore.ParameterSet.Config as cms
0004 from Configuration.Generator.Pythia8CommonSettings_cfi import *
0005 from Configuration.Generator.Pythia8CUEP8M1Settings_cfi import *
0006 from Configuration.Generator.Pythia8PowhegEmissionVetoSettings_cfi import *
0007 
0008 generator = cms.EDFilter("Pythia8ConcurrentHadronizerFilter",
0009                          maxEventsToPrint = cms.untracked.int32(1),
0010                          pythiaPylistVerbosity = cms.untracked.int32(1),
0011                          filterEfficiency = cms.untracked.double(1.0),
0012                          pythiaHepMCVerbosity = cms.untracked.bool(False),
0013                          comEnergy = cms.double(13000.),
0014                          PythiaParameters = cms.PSet(
0015         pythia8CommonSettingsBlock,
0016         pythia8CUEP8M1SettingsBlock,
0017         pythia8PowhegEmissionVetoSettingsBlock,
0018         processParameters = cms.vstring(
0019             'POWHEG:nFinal = 3',   ## Number of final state particles
0020                                    ## (BEFORE THE DECAYS) in the LHE
0021                                    ## other than emitted extra parton
0022             '25:m0 = 125.0',
0023             '25:onMode = off',
0024             '25:onIfMatch = 5 -5',
0025           ),
0026         parameterSets = cms.vstring('pythia8CommonSettings',
0027                                     'pythia8CUEP8M1Settings',
0028                                     'pythia8PowhegEmissionVetoSettings',
0029                                     'processParameters'
0030                                     )
0031         )
0032                          )
0033 
0034 ProductionFilterSequence = cms.Sequence(generator)