From 6bd47d6b1b35adac098b48e65df4a4f3f4386f79 Mon Sep 17 00:00:00 2001 From: chayanit Date: Sun, 31 Mar 2019 09:01:54 +0200 Subject: [PATCH] hadronizer for HToGG Minlo NNLOPS pLHE relval --- ...gEmissionVeto_2p_HToGG_M125_LHE_py8_cff.py | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 Configuration/Generator/python/Hadronizer_TuneCUETP8M1_13TeV_powhegEmissionVeto_2p_HToGG_M125_LHE_py8_cff.py diff --git a/Configuration/Generator/python/Hadronizer_TuneCUETP8M1_13TeV_powhegEmissionVeto_2p_HToGG_M125_LHE_py8_cff.py b/Configuration/Generator/python/Hadronizer_TuneCUETP8M1_13TeV_powhegEmissionVeto_2p_HToGG_M125_LHE_py8_cff.py new file mode 100644 index 0000000000000..f2e8345e7538c --- /dev/null +++ b/Configuration/Generator/python/Hadronizer_TuneCUETP8M1_13TeV_powhegEmissionVeto_2p_HToGG_M125_LHE_py8_cff.py @@ -0,0 +1,32 @@ +import FWCore.ParameterSet.Config as cms +from Configuration.Generator.Pythia8CommonSettings_cfi import * +from Configuration.Generator.Pythia8CUEP8M1Settings_cfi import * +from Configuration.Generator.Pythia8PowhegEmissionVetoSettings_cfi import * + +generator = cms.EDFilter("Pythia8HadronizerFilter", + maxEventsToPrint = cms.untracked.int32(1), + pythiaPylistVerbosity = cms.untracked.int32(1), + filterEfficiency = cms.untracked.double(1.0), + pythiaHepMCVerbosity = cms.untracked.bool(False), + comEnergy = cms.double(13000.), + PythiaParameters = cms.PSet( + pythia8CommonSettingsBlock, + pythia8CUEP8M1SettingsBlock, + pythia8PowhegEmissionVetoSettingsBlock, + processParameters = cms.vstring( + 'POWHEG:nFinal = 2', ## Number of final state particles + ## (BEFORE THE DECAYS) in the LHE + ## other than emitted extra parton + '25:m0 = 125.0', + '25:onMode = off', + '25:onIfMatch = 22 22', + ), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'pythia8PowhegEmissionVetoSettings', + 'processParameters' + ) + ) + ) + +ProductionFilterSequence = cms.Sequence(generator)