From e05dcecdee18935644139fa15c1a94b351e6be0a Mon Sep 17 00:00:00 2001 From: Ana Sculac <73283250+asculac@users.noreply.github.com> Date: Wed, 18 Dec 2024 12:40:17 +0100 Subject: [PATCH 01/17] Create HHToWWZZ_3l.py --- .../ThirteenTeV/Higgs/HH/HHToWWZZ_3l.py | 60 +++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 genfragments/ThirteenTeV/Higgs/HH/HHToWWZZ_3l.py diff --git a/genfragments/ThirteenTeV/Higgs/HH/HHToWWZZ_3l.py b/genfragments/ThirteenTeV/Higgs/HH/HHToWWZZ_3l.py new file mode 100644 index 000000000000..85cd04f28115 --- /dev/null +++ b/genfragments/ThirteenTeV/Higgs/HH/HHToWWZZ_3l.py @@ -0,0 +1,60 @@ +import FWCore.ParameterSet.Config as cms + +externalLHEProducer = cms.EDProducer("ExternalLHEProducer", + args = cms.vstring('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc700/13TeV/powheg/V2/ggHH_EWChL_NNPDF31_13TeV_M125_cHHH1/v3/ggHH_EWChL_slc6_amd64_gcc700_CMSSW_10_2_5_patch1_my_ggHH_EWChL.tgz'), + nEvents = cms.untracked.uint32(5000), + numberOfParameters = cms.uint32(1), + outputFile = cms.string('cmsgrid_final.lhe'), + scriptName = cms.FileInPath('GeneratorInterface/LHEInterface/data/run_generic_tarball_cvmfs.sh') +) + + + +#Link to datacards: +#https://github.com/cms-sw/genproductions/tree/master/bin/MadGraph5_aMCatNLO/cards/production/2017/13TeV/exo_diboson/ + +import FWCore.ParameterSet.Config as cms +from Configuration.Generator.Pythia8CommonSettings_cfi import * +from Configuration.Generator.MCTunes2017.PythiaCP5Settings_cfi import * +from Configuration.Generator.PSweightsPythia.PythiaPSweightsSettings_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, + pythia8CP5SettingsBlock, + pythia8PSweightsSettingsBlock, + pythia8PowhegEmissionVetoSettingsBlock, + processParameters = cms.vstring( + 'POWHEG:nFinal = 2', ## Number of final state particles + '23:mMin = 0.05', + '24:mMin = 0.05', + '25:m0 = 125.0', + '25:onMode = off', + '25:onIfMatch = 24 -24', #H->w+w- + '25:onIfMatch = 23 23', #H->ZZ + '23:onMode = off', # disable all Z decay modes + '23:onIfAny = 1 2 3 4 5 6 7 8 11 13 15', # enable only Z->ll and Z->qq + 'ResonanceDecayFilter:filter = on', + 'ResonanceDecayFilter:exclusive = on', #off: require at least the specified number of daughters, on: require exactly the specified number of daughters + 'ResonanceDecayFilter:mothers = 25,24,23', #? TBC! list of mothers not specified -> count all particles in hard process+resonance decays + #(better to avoid specifying mothers when including leptons from the lhe in counting, since intermediate resonances are not gauranteed to appear in general + # 'ResonanceDecayFilter:wzAsEquivalent = on', + 'ResonanceDecayFilter:eMuAsEquivalent = on', #on: treat electrons and muons as equivalent + 'ResonanceDecayFilter:daughters = 24,24,23,23,11,11,11', + ), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CP5Settings', + 'pythia8PSweightsSettings', + 'pythia8PowhegEmissionVetoSettings', + 'processParameters' + ) + ) + ) + +ProductionFilterSequence = cms.Sequence(generator) From a7f8989543bf28dddd36e102fd7276f3215fe871 Mon Sep 17 00:00:00 2001 From: Ana Sculac <73283250+asculac@users.noreply.github.com> Date: Wed, 18 Dec 2024 12:42:32 +0100 Subject: [PATCH 02/17] Create HHToWWZZ_4lplus.py --- .../ThirteenTeV/Higgs/HH/HHToWWZZ_4lplus.py | 58 +++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 genfragments/ThirteenTeV/Higgs/HH/HHToWWZZ_4lplus.py diff --git a/genfragments/ThirteenTeV/Higgs/HH/HHToWWZZ_4lplus.py b/genfragments/ThirteenTeV/Higgs/HH/HHToWWZZ_4lplus.py new file mode 100644 index 000000000000..d0fe608bc545 --- /dev/null +++ b/genfragments/ThirteenTeV/Higgs/HH/HHToWWZZ_4lplus.py @@ -0,0 +1,58 @@ +import FWCore.ParameterSet.Config as cms + +externalLHEProducer = cms.EDProducer("ExternalLHEProducer", + args = cms.vstring('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc700/13TeV/powheg/V2/ggHH_EWChL_NNPDF31_13TeV_M125_cHHH1/v3/ggHH_EWChL_slc6_amd64_gcc700_CMSSW_10_2_5_patch1_my_ggHH_EWChL.tgz'), + nEvents = cms.untracked.uint32(5000), + numberOfParameters = cms.uint32(1), + outputFile = cms.string('cmsgrid_final.lhe'), + scriptName = cms.FileInPath('GeneratorInterface/LHEInterface/data/run_generic_tarball_cvmfs.sh') +) + +#Link to datacards: +#https://github.com/cms-sw/genproductions/tree/master/bin/MadGraph5_aMCatNLO/cards/production/2017/13TeV/exo_diboson/ + +import FWCore.ParameterSet.Config as cms +from Configuration.Generator.Pythia8CommonSettings_cfi import * +from Configuration.Generator.MCTunes2017.PythiaCP5Settings_cfi import * +from Configuration.Generator.PSweightsPythia.PythiaPSweightsSettings_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, + pythia8CP5SettingsBlock, + pythia8PSweightsSettingsBlock, + pythia8PowhegEmissionVetoSettingsBlock, + processParameters = cms.vstring( + 'POWHEG:nFinal = 2', ## Number of final state particles + '23:mMin = 0.05', + '24:mMin = 0.05', + '25:m0 = 125.0', + '25:onMode = off', + '25:onIfMatch = 24 -24', #H->w+w- + '25:onIfMatch = 23 23', #H->ZZ + '23:onMode = off', # disable all Z decay modes + '23:onIfAny = 1 2 3 4 5 6 7 8 11 13 15', # enable only Z->ll and Z->qq + 'ResonanceDecayFilter:filter = on', + 'ResonanceDecayFilter:exclusive = off', #off: require at least the specified number of daughters, on: require exactly the specified number of daughters + 'ResonanceDecayFilter:mothers = 25,24,23', #? TBC! list of mothers not specified -> count all particles in hard process+resonance decays + #(better to avoid specifying mothers when including leptons from the lhe in counting, since intermediate resonances are not gauranteed to appear in general + # 'ResonanceDecayFilter:wzAsEquivalent = on', + 'ResonanceDecayFilter:eMuAsEquivalent = on', #on: treat electrons and muons as equivalent + 'ResonanceDecayFilter:daughters = 24,24,23,23,11,11,11,11', + ), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CP5Settings', + 'pythia8PSweightsSettings', + 'pythia8PowhegEmissionVetoSettings', + 'processParameters' + ) + ) + ) + +ProductionFilterSequence = cms.Sequence(generator) From 4004c35cd315036b6c1a7e3e0b99c3ef4c55cca4 Mon Sep 17 00:00:00 2001 From: Ana Sculac <73283250+asculac@users.noreply.github.com> Date: Wed, 18 Dec 2024 12:48:44 +0100 Subject: [PATCH 03/17] Create qqWWZZ_3l.py --- genfragments/ThirteenTeV/qqWWZZ_3l.py | 52 +++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 genfragments/ThirteenTeV/qqWWZZ_3l.py diff --git a/genfragments/ThirteenTeV/qqWWZZ_3l.py b/genfragments/ThirteenTeV/qqWWZZ_3l.py new file mode 100644 index 000000000000..4f9bb2ad92a1 --- /dev/null +++ b/genfragments/ThirteenTeV/qqWWZZ_3l.py @@ -0,0 +1,52 @@ +import FWCore.ParameterSet.Config as cms +from Configuration.Generator.Pythia8CommonSettings_cfi import * +from Configuration.Generator.MCTunes2017.PythiaCP5Settings_cfi import * +from Configuration.Generator.PSweightsPythia.PythiaPSweightsSettings_cfi import * +from Configuration.Generator.Pythia8PowhegEmissionVetoSettings_cfi import * + +externalLHEProducer = cms.EDProducer("ExternalLHEProducer", + args = cms.vstring('/eos/home-r/rjiang/wwzz/qq_3l_new/qq_wwzz_slc7_amd64_gcc700_CMSSW_10_6_19_tarball.tar.xz'), #private gridpack + nEvents = cms.untracked.uint32(20000), + numberOfParameters = cms.uint32(1), + outputFile = cms.string('cmsgrid_final.lhe'), + scriptName = cms.FileInPath('GeneratorInterface/LHEInterface/data/run_generic_tarball_cvmfs.sh') +) + +#Link to datacards: +#https://github.com/cms-sw/genproductions/tree/master/bin/MadGraph5_aMCatNLO/cards/production/2017/13TeV/exo_diboson/ + + + +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, + pythia8CP5SettingsBlock, + pythia8PSweightsSettingsBlock, + pythia8PowhegEmissionVetoSettingsBlock, + processParameters = cms.vstring( + 'POWHEG:nFinal = 4', ## Number of final state particles + '23:mMin = 0.05', + '24:mMin = 0.05', + '23:onMode = off', # disable all Z decay modes + '23:onIfAny = 1 2 3 4 5 6 7 8 11 13 15', # enable only Z->ll and Z->qq + 'ResonanceDecayFilter:filter = on', + 'ResonanceDecayFilter:exclusive = on', #off: require at least the specified number of daughters, on: require exactly the specified number of daughters + 'ResonanceDecayFilter:mothers = 24,23', #? TBC! list of mothers not specified -> count all particles in hard process+resonance decays + 'ResonanceDecayFilter:eMuAsEquivalent = on', #on: treat electrons and muons as equivalent + 'ResonanceDecayFilter:daughters = 11,11,11', + ), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CP5Settings', + 'pythia8PSweightsSettings', + 'pythia8PowhegEmissionVetoSettings', + 'processParameters' + ) + ) + ) + +ProductionFilterSequence = cms.Sequence(generator) From 3c2c2386ff5f2c1888d406b583023e70ea7c4b38 Mon Sep 17 00:00:00 2001 From: Ana Sculac <73283250+asculac@users.noreply.github.com> Date: Wed, 18 Dec 2024 12:49:59 +0100 Subject: [PATCH 04/17] Create qqWWZZ_4lplus.py --- genfragments/ThirteenTeV/qqWWZZ_4lplus.py | 52 +++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 genfragments/ThirteenTeV/qqWWZZ_4lplus.py diff --git a/genfragments/ThirteenTeV/qqWWZZ_4lplus.py b/genfragments/ThirteenTeV/qqWWZZ_4lplus.py new file mode 100644 index 000000000000..c179f9424e37 --- /dev/null +++ b/genfragments/ThirteenTeV/qqWWZZ_4lplus.py @@ -0,0 +1,52 @@ +import FWCore.ParameterSet.Config as cms +from Configuration.Generator.Pythia8CommonSettings_cfi import * +from Configuration.Generator.MCTunes2017.PythiaCP5Settings_cfi import * +from Configuration.Generator.PSweightsPythia.PythiaPSweightsSettings_cfi import * +from Configuration.Generator.Pythia8PowhegEmissionVetoSettings_cfi import * + +externalLHEProducer = cms.EDProducer("ExternalLHEProducer", + args = cms.vstring('/eos/home-r/rjiang/wwzz/qq_4lmore_new/qq_wwzz_slc7_amd64_gcc700_CMSSW_10_6_19_tarball.tar.xz'), #private gridpack + nEvents = cms.untracked.uint32(20000), + numberOfParameters = cms.uint32(1), + outputFile = cms.string('cmsgrid_final.lhe'), + scriptName = cms.FileInPath('GeneratorInterface/LHEInterface/data/run_generic_tarball_cvmfs.sh') +) + +#Link to datacards: +#https://github.com/cms-sw/genproductions/tree/master/bin/MadGraph5_aMCatNLO/cards/production/2017/13TeV/exo_diboson/ + + + +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, + pythia8CP5SettingsBlock, + pythia8PSweightsSettingsBlock, + pythia8PowhegEmissionVetoSettingsBlock, + processParameters = cms.vstring( + 'POWHEG:nFinal = 4', ## Number of final state particles + '23:mMin = 0.05', + '24:mMin = 0.05', + '23:onMode = off', # disable all Z decay modes + '23:onIfAny = 1 2 3 4 5 6 7 8 11 13 15', # enable only Z->ll and Z->qq + 'ResonanceDecayFilter:filter = on', + 'ResonanceDecayFilter:exclusive = off', #off: require at least the specified number of daughters, on: require exactly the specified number of daughters + 'ResonanceDecayFilter:mothers = 24,23', #? TBC! list of mothers not specified -> count all particles in hard process+resonance decays + 'ResonanceDecayFilter:eMuAsEquivalent = on', #on: treat electrons and muons as equivalent + 'ResonanceDecayFilter:daughters = 11,11,11,11', + ), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CP5Settings', + 'pythia8PSweightsSettings', + 'pythia8PowhegEmissionVetoSettings', + 'processParameters' + ) + ) + ) + +ProductionFilterSequence = cms.Sequence(generator) From d9281ca9bae3ea0f67369e8fdfcaff1253317488 Mon Sep 17 00:00:00 2001 From: Ana Sculac <73283250+asculac@users.noreply.github.com> Date: Wed, 18 Dec 2024 13:00:34 +0100 Subject: [PATCH 05/17] Create HHToWWZZ_3l_TuneCP5_13p6TeV_powheg-pythia8.py.py --- ...ZZ_3l_TuneCP5_13p6TeV_powheg-pythia8.py.py | 48 +++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 genfragments/ThirteenPointSixTeV/Higgs/HH/HHToWWZZ_3l_TuneCP5_13p6TeV_powheg-pythia8.py.py diff --git a/genfragments/ThirteenPointSixTeV/Higgs/HH/HHToWWZZ_3l_TuneCP5_13p6TeV_powheg-pythia8.py.py b/genfragments/ThirteenPointSixTeV/Higgs/HH/HHToWWZZ_3l_TuneCP5_13p6TeV_powheg-pythia8.py.py new file mode 100644 index 000000000000..fc0a9f13e02c --- /dev/null +++ b/genfragments/ThirteenPointSixTeV/Higgs/HH/HHToWWZZ_3l_TuneCP5_13p6TeV_powheg-pythia8.py.py @@ -0,0 +1,48 @@ +import FWCore.ParameterSet.Config as cms +from Configuration.Generator.Pythia8CommonSettings_cfi import * +from Configuration.Generator.MCTunesRun3ECM13p6TeV.PythiaCP5Settings_cfi import * +from Configuration.Generator.PSweightsPythia.PythiaPSweightsSettings_cfi import * +from Configuration.Generator.Pythia8PowhegEmissionVetoSettings_cfi import * + +generator = cms.EDFilter( + "Pythia8ConcurrentHadronizerFilter", + maxEventsToPrint = cms.untracked.int32(1), + pythiaPylistVerbosity = cms.untracked.int32(1), + filterEfficiency = cms.untracked.double(1.0), + pythiaHepMCVerbosity = cms.untracked.bool(False), + comEnergy = cms.double(13600.), + PythiaParameters = cms.PSet( + pythia8CommonSettingsBlock, + pythia8CP5SettingsBlock, + pythia8PSweightsSettingsBlock, + pythia8PowhegEmissionVetoSettingsBlock, + processParameters = cms.vstring( + 'POWHEG:nFinal = 2', ## Number of final state particles + ## (BEFORE THE DECAYS) in the LHE + ## other than emitted extra parton + '23:mMin = 0.05', + '24:mMin = 0.05', + '25:m0 = 125.0', + '25:onMode = off', + '25:onIfMatch = 24 -24', + '25:onIfMatch = 23 23', + '23:onMode = off', # disable all decay modes + '23:onIfAny = 1 2 3 4 5 6 7 8 11 13 15', # find out if also 6 7 8 and 15 + 'ResonanceDecayFilter:filter = on', + 'ResonanceDecayFilter:exclusive = on', # off: require at least the specified number of daughters, on: require exactly the specified number of daughters + 'ResonanceDecayFilter:mothers = 25,24,23', # list of mothers not specified -> count all particles in hard process+resonance decays (better to avoid specifying mothers when including leptons from the lhe in counting, since intermediate resonances are not gauranteed to appear in general + #'ResonanceDecayFilter:wzAsEquivalent = on', + 'ResonanceDecayFilter:eMuAsEquivalent = on', + 'ResonanceDecayFilter:daughters = 24,24,23,23,11,11,11', + ), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CP5Settings', + 'pythia8PSweightsSettings', + 'pythia8PowhegEmissionVetoSettings', + 'processParameters' + ) + ) + ) + + +ProductionFilterSequence = cms.Sequence(generator) From b5a1a3d2311ad8324ce244231006e678578386c1 Mon Sep 17 00:00:00 2001 From: Ana Sculac <73283250+asculac@users.noreply.github.com> Date: Wed, 18 Dec 2024 13:09:00 +0100 Subject: [PATCH 06/17] Edit name --- ...ythia8.py.py => HHToWWZZ_3l_TuneCP5_13p6TeV_powheg-pythia8.py} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename genfragments/ThirteenPointSixTeV/Higgs/HH/{HHToWWZZ_3l_TuneCP5_13p6TeV_powheg-pythia8.py.py => HHToWWZZ_3l_TuneCP5_13p6TeV_powheg-pythia8.py} (100%) diff --git a/genfragments/ThirteenPointSixTeV/Higgs/HH/HHToWWZZ_3l_TuneCP5_13p6TeV_powheg-pythia8.py.py b/genfragments/ThirteenPointSixTeV/Higgs/HH/HHToWWZZ_3l_TuneCP5_13p6TeV_powheg-pythia8.py similarity index 100% rename from genfragments/ThirteenPointSixTeV/Higgs/HH/HHToWWZZ_3l_TuneCP5_13p6TeV_powheg-pythia8.py.py rename to genfragments/ThirteenPointSixTeV/Higgs/HH/HHToWWZZ_3l_TuneCP5_13p6TeV_powheg-pythia8.py From ce85095dc91430eea0019f11b810949cbfcd518c Mon Sep 17 00:00:00 2001 From: Ana Sculac <73283250+asculac@users.noreply.github.com> Date: Wed, 18 Dec 2024 13:09:52 +0100 Subject: [PATCH 07/17] Create HHToWWZZ_4lplus_TuneCP5_13p6TeV_powheg-pythia8.py --- ...Z_4lplus_TuneCP5_13p6TeV_powheg-pythia8.py | 49 +++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 genfragments/ThirteenPointSixTeV/Higgs/HH/HHToWWZZ_4lplus_TuneCP5_13p6TeV_powheg-pythia8.py diff --git a/genfragments/ThirteenPointSixTeV/Higgs/HH/HHToWWZZ_4lplus_TuneCP5_13p6TeV_powheg-pythia8.py b/genfragments/ThirteenPointSixTeV/Higgs/HH/HHToWWZZ_4lplus_TuneCP5_13p6TeV_powheg-pythia8.py new file mode 100644 index 000000000000..d5c7d96f80af --- /dev/null +++ b/genfragments/ThirteenPointSixTeV/Higgs/HH/HHToWWZZ_4lplus_TuneCP5_13p6TeV_powheg-pythia8.py @@ -0,0 +1,49 @@ +import FWCore.ParameterSet.Config as cms +from Configuration.Generator.Pythia8CommonSettings_cfi import * +from Configuration.Generator.MCTunesRun3ECM13p6TeV.PythiaCP5Settings_cfi import * +from Configuration.Generator.PSweightsPythia.PythiaPSweightsSettings_cfi import * +from Configuration.Generator.Pythia8PowhegEmissionVetoSettings_cfi import * + +generator = cms.EDFilter( + "Pythia8ConcurrentHadronizerFilter", + maxEventsToPrint = cms.untracked.int32(1), + pythiaPylistVerbosity = cms.untracked.int32(1), + filterEfficiency = cms.untracked.double(1.0), + pythiaHepMCVerbosity = cms.untracked.bool(False), + comEnergy = cms.double(13600.), + PythiaParameters = cms.PSet( + pythia8CommonSettingsBlock, + pythia8CP5SettingsBlock, + pythia8PSweightsSettingsBlock, + pythia8PowhegEmissionVetoSettingsBlock, + processParameters = cms.vstring( + 'POWHEG:nFinal = 2', ## Number of final state particles + ## (BEFORE THE DECAYS) in the LHE + ## other than emitted extra parton + '23:mMin = 0.05', + '24:mMin = 0.05', + '25:m0 = 125.0', + '25:onMode = off', + '25:onIfMatch = 24 -24', + '25:onIfMatch = 23 23', + '23:onMode = off', # disable all decay modes + '23:onIfAny = 1 2 3 4 5 6 7 8 11 13 15', # find out if also 6 7 8 and 15 + 'ResonanceDecayFilter:filter = on', + 'ResonanceDecayFilter:exclusive = off', # off: require at least the specified number of daughters, on: require exactly the specified number of daughters + 'ResonanceDecayFilter:mothers = 25,24,23', # list of mothers not specified -> count all particles in hard process+resonance decays (better to avoid specifying mothers when including leptons from the lhe in counting, since intermediate resonances are not gauranteed to appear in general + #'ResonanceDecayFilter:wzAsEquivalent = on', + 'ResonanceDecayFilter:eMuAsEquivalent = on', + 'ResonanceDecayFilter:daughters = 24,24,23,23,11,11,11,11', + ), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CP5Settings', + 'pythia8PSweightsSettings', + 'pythia8PowhegEmissionVetoSettings', + 'processParameters' + ) + ) + ) + + + +ProductionFilterSequence = cms.Sequence(generator) From e7f04bdfb3cd58867503482d5d6dc34a891c2716 Mon Sep 17 00:00:00 2001 From: Ana Sculac <73283250+asculac@users.noreply.github.com> Date: Wed, 18 Dec 2024 13:13:58 +0100 Subject: [PATCH 08/17] small edit --- ...HToWWZZ_4lplus_TuneCP5_13TeV_powheg-pythia8..py} | 13 ------------- 1 file changed, 13 deletions(-) rename genfragments/ThirteenTeV/Higgs/HH/{HHToWWZZ_4lplus.py => HHToWWZZ_4lplus_TuneCP5_13TeV_powheg-pythia8..py} (79%) diff --git a/genfragments/ThirteenTeV/Higgs/HH/HHToWWZZ_4lplus.py b/genfragments/ThirteenTeV/Higgs/HH/HHToWWZZ_4lplus_TuneCP5_13TeV_powheg-pythia8..py similarity index 79% rename from genfragments/ThirteenTeV/Higgs/HH/HHToWWZZ_4lplus.py rename to genfragments/ThirteenTeV/Higgs/HH/HHToWWZZ_4lplus_TuneCP5_13TeV_powheg-pythia8..py index d0fe608bc545..5c229fa1fb32 100644 --- a/genfragments/ThirteenTeV/Higgs/HH/HHToWWZZ_4lplus.py +++ b/genfragments/ThirteenTeV/Higgs/HH/HHToWWZZ_4lplus_TuneCP5_13TeV_powheg-pythia8..py @@ -1,16 +1,3 @@ -import FWCore.ParameterSet.Config as cms - -externalLHEProducer = cms.EDProducer("ExternalLHEProducer", - args = cms.vstring('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc700/13TeV/powheg/V2/ggHH_EWChL_NNPDF31_13TeV_M125_cHHH1/v3/ggHH_EWChL_slc6_amd64_gcc700_CMSSW_10_2_5_patch1_my_ggHH_EWChL.tgz'), - nEvents = cms.untracked.uint32(5000), - numberOfParameters = cms.uint32(1), - outputFile = cms.string('cmsgrid_final.lhe'), - scriptName = cms.FileInPath('GeneratorInterface/LHEInterface/data/run_generic_tarball_cvmfs.sh') -) - -#Link to datacards: -#https://github.com/cms-sw/genproductions/tree/master/bin/MadGraph5_aMCatNLO/cards/production/2017/13TeV/exo_diboson/ - import FWCore.ParameterSet.Config as cms from Configuration.Generator.Pythia8CommonSettings_cfi import * from Configuration.Generator.MCTunes2017.PythiaCP5Settings_cfi import * From 1a69251397e6e143dacfefe454cad9a2988be03d Mon Sep 17 00:00:00 2001 From: Ana Sculac <73283250+asculac@users.noreply.github.com> Date: Wed, 18 Dec 2024 13:16:10 +0100 Subject: [PATCH 09/17] small edit --- ... HHToWWZZ_3l_TuneCP5_13TeV_powheg-pythia8..py} | 15 --------------- 1 file changed, 15 deletions(-) rename genfragments/ThirteenTeV/Higgs/HH/{HHToWWZZ_3l.py => HHToWWZZ_3l_TuneCP5_13TeV_powheg-pythia8..py} (79%) diff --git a/genfragments/ThirteenTeV/Higgs/HH/HHToWWZZ_3l.py b/genfragments/ThirteenTeV/Higgs/HH/HHToWWZZ_3l_TuneCP5_13TeV_powheg-pythia8..py similarity index 79% rename from genfragments/ThirteenTeV/Higgs/HH/HHToWWZZ_3l.py rename to genfragments/ThirteenTeV/Higgs/HH/HHToWWZZ_3l_TuneCP5_13TeV_powheg-pythia8..py index 85cd04f28115..1ff98fd212e5 100644 --- a/genfragments/ThirteenTeV/Higgs/HH/HHToWWZZ_3l.py +++ b/genfragments/ThirteenTeV/Higgs/HH/HHToWWZZ_3l_TuneCP5_13TeV_powheg-pythia8..py @@ -1,18 +1,3 @@ -import FWCore.ParameterSet.Config as cms - -externalLHEProducer = cms.EDProducer("ExternalLHEProducer", - args = cms.vstring('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc700/13TeV/powheg/V2/ggHH_EWChL_NNPDF31_13TeV_M125_cHHH1/v3/ggHH_EWChL_slc6_amd64_gcc700_CMSSW_10_2_5_patch1_my_ggHH_EWChL.tgz'), - nEvents = cms.untracked.uint32(5000), - numberOfParameters = cms.uint32(1), - outputFile = cms.string('cmsgrid_final.lhe'), - scriptName = cms.FileInPath('GeneratorInterface/LHEInterface/data/run_generic_tarball_cvmfs.sh') -) - - - -#Link to datacards: -#https://github.com/cms-sw/genproductions/tree/master/bin/MadGraph5_aMCatNLO/cards/production/2017/13TeV/exo_diboson/ - import FWCore.ParameterSet.Config as cms from Configuration.Generator.Pythia8CommonSettings_cfi import * from Configuration.Generator.MCTunes2017.PythiaCP5Settings_cfi import * From fbcbd2ff4309c83d7886948e2a686e5868c26d51 Mon Sep 17 00:00:00 2001 From: Ana Sculac <73283250+asculac@users.noreply.github.com> Date: Wed, 18 Dec 2024 13:26:17 +0100 Subject: [PATCH 10/17] small edit --- ...py => qqWWZZ_3l_TuneCP5_13TeV_powheg-pythia8.py} | 13 ------------- 1 file changed, 13 deletions(-) rename genfragments/ThirteenTeV/{qqWWZZ_3l.py => qqWWZZ_3l_TuneCP5_13TeV_powheg-pythia8.py} (79%) diff --git a/genfragments/ThirteenTeV/qqWWZZ_3l.py b/genfragments/ThirteenTeV/qqWWZZ_3l_TuneCP5_13TeV_powheg-pythia8.py similarity index 79% rename from genfragments/ThirteenTeV/qqWWZZ_3l.py rename to genfragments/ThirteenTeV/qqWWZZ_3l_TuneCP5_13TeV_powheg-pythia8.py index 4f9bb2ad92a1..7b3fe4ddaf2f 100644 --- a/genfragments/ThirteenTeV/qqWWZZ_3l.py +++ b/genfragments/ThirteenTeV/qqWWZZ_3l_TuneCP5_13TeV_powheg-pythia8.py @@ -4,19 +4,6 @@ from Configuration.Generator.PSweightsPythia.PythiaPSweightsSettings_cfi import * from Configuration.Generator.Pythia8PowhegEmissionVetoSettings_cfi import * -externalLHEProducer = cms.EDProducer("ExternalLHEProducer", - args = cms.vstring('/eos/home-r/rjiang/wwzz/qq_3l_new/qq_wwzz_slc7_amd64_gcc700_CMSSW_10_6_19_tarball.tar.xz'), #private gridpack - nEvents = cms.untracked.uint32(20000), - numberOfParameters = cms.uint32(1), - outputFile = cms.string('cmsgrid_final.lhe'), - scriptName = cms.FileInPath('GeneratorInterface/LHEInterface/data/run_generic_tarball_cvmfs.sh') -) - -#Link to datacards: -#https://github.com/cms-sw/genproductions/tree/master/bin/MadGraph5_aMCatNLO/cards/production/2017/13TeV/exo_diboson/ - - - generator = cms.EDFilter("Pythia8HadronizerFilter", maxEventsToPrint = cms.untracked.int32(1), pythiaPylistVerbosity = cms.untracked.int32(1), From fb173fc308ad403a5b71ef73a84f3b6c9447a1e8 Mon Sep 17 00:00:00 2001 From: Ana Sculac <73283250+asculac@users.noreply.github.com> Date: Wed, 18 Dec 2024 13:30:24 +0100 Subject: [PATCH 11/17] small edit --- ...> qqWWZZ_4lplus_TuneCP5_13TeV_powheg-pythia8..py} | 12 ------------ 1 file changed, 12 deletions(-) rename genfragments/ThirteenTeV/{qqWWZZ_4lplus.py => qqWWZZ_4lplus_TuneCP5_13TeV_powheg-pythia8..py} (79%) diff --git a/genfragments/ThirteenTeV/qqWWZZ_4lplus.py b/genfragments/ThirteenTeV/qqWWZZ_4lplus_TuneCP5_13TeV_powheg-pythia8..py similarity index 79% rename from genfragments/ThirteenTeV/qqWWZZ_4lplus.py rename to genfragments/ThirteenTeV/qqWWZZ_4lplus_TuneCP5_13TeV_powheg-pythia8..py index c179f9424e37..df9981e7efdf 100644 --- a/genfragments/ThirteenTeV/qqWWZZ_4lplus.py +++ b/genfragments/ThirteenTeV/qqWWZZ_4lplus_TuneCP5_13TeV_powheg-pythia8..py @@ -4,18 +4,6 @@ from Configuration.Generator.PSweightsPythia.PythiaPSweightsSettings_cfi import * from Configuration.Generator.Pythia8PowhegEmissionVetoSettings_cfi import * -externalLHEProducer = cms.EDProducer("ExternalLHEProducer", - args = cms.vstring('/eos/home-r/rjiang/wwzz/qq_4lmore_new/qq_wwzz_slc7_amd64_gcc700_CMSSW_10_6_19_tarball.tar.xz'), #private gridpack - nEvents = cms.untracked.uint32(20000), - numberOfParameters = cms.uint32(1), - outputFile = cms.string('cmsgrid_final.lhe'), - scriptName = cms.FileInPath('GeneratorInterface/LHEInterface/data/run_generic_tarball_cvmfs.sh') -) - -#Link to datacards: -#https://github.com/cms-sw/genproductions/tree/master/bin/MadGraph5_aMCatNLO/cards/production/2017/13TeV/exo_diboson/ - - generator = cms.EDFilter("Pythia8HadronizerFilter", maxEventsToPrint = cms.untracked.int32(1), From 1fbce1df48f8d03e02057ed348e548c0e902165d Mon Sep 17 00:00:00 2001 From: Ana Sculac <73283250+asculac@users.noreply.github.com> Date: Wed, 18 Dec 2024 15:29:09 +0100 Subject: [PATCH 12/17] Create qqWWZZ_3l_TuneCP5_13p6TeV_powheg-pythia8.py --- ...qWWZZ_3l_TuneCP5_13p6TeV_powheg-pythia8.py | 41 +++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 genfragments/ThirteenPointSixTeV/qqWWZZ_3l_TuneCP5_13p6TeV_powheg-pythia8.py diff --git a/genfragments/ThirteenPointSixTeV/qqWWZZ_3l_TuneCP5_13p6TeV_powheg-pythia8.py b/genfragments/ThirteenPointSixTeV/qqWWZZ_3l_TuneCP5_13p6TeV_powheg-pythia8.py new file mode 100644 index 000000000000..8fbede3959b8 --- /dev/null +++ b/genfragments/ThirteenPointSixTeV/qqWWZZ_3l_TuneCP5_13p6TeV_powheg-pythia8.py @@ -0,0 +1,41 @@ +import FWCore.ParameterSet.Config as cms +from Configuration.Generator.Pythia8CommonSettings_cfi import * +from Configuration.Generator.MCTunesRun3ECM13p6TeV.PythiaCP5Settings_cfi import * +from Configuration.Generator.PSweightsPythia.PythiaPSweightsSettings_cfi import * +from Configuration.Generator.Pythia8PowhegEmissionVetoSettings_cfi import * + +generator = cms.EDFilter( + "Pythia8ConcurrentHadronizerFilter", + maxEventsToPrint = cms.untracked.int32(1), + pythiaPylistVerbosity = cms.untracked.int32(1), + filterEfficiency = cms.untracked.double(1.0), + pythiaHepMCVerbosity = cms.untracked.bool(False), + comEnergy = cms.double(13600.), + PythiaParameters = cms.PSet( + pythia8CommonSettingsBlock, + pythia8CP5SettingsBlock, + pythia8PSweightsSettingsBlock, + pythia8PowhegEmissionVetoSettingsBlock, + processParameters = cms.vstring( + 'POWHEG:nFinal = 4', ## Number of final state particles + '23:mMin = 0.05', + '24:mMin = 0.05', + '23:onMode = off', # disable all Z decay modes + '23:onIfAny = 1 2 3 4 5 6 7 8 11 13 15', # enable only Z->ll and Z->qq + 'ResonanceDecayFilter:filter = on', + 'ResonanceDecayFilter:exclusive = on', #off: require at least the specified number of daughters, on: require exactly the specified number of daughters + 'ResonanceDecayFilter:mothers = 24,23', #? TBC! list of mothers not specified -> count all particles in hard process+resonance decays + 'ResonanceDecayFilter:eMuAsEquivalent = on', #on: treat electrons and muons as equivalent + 'ResonanceDecayFilter:daughters = 11,11,11', + ), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CP5Settings', + 'pythia8PSweightsSettings', + 'pythia8PowhegEmissionVetoSettings', + 'processParameters' + ) + ) + ) + + +ProductionFilterSequence = cms.Sequence(generator) From 4643078617dfd98eca975e459a9db0a437ebb3cf Mon Sep 17 00:00:00 2001 From: Ana Sculac <73283250+asculac@users.noreply.github.com> Date: Wed, 18 Dec 2024 15:32:24 +0100 Subject: [PATCH 13/17] Create qqWWZZ_4lplus_TuneCP5_13p6TeV_powheg-pythia8.py --- ...Z_4lplus_TuneCP5_13p6TeV_powheg-pythia8.py | 41 +++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 genfragments/ThirteenPointSixTeV/qqWWZZ_4lplus_TuneCP5_13p6TeV_powheg-pythia8.py diff --git a/genfragments/ThirteenPointSixTeV/qqWWZZ_4lplus_TuneCP5_13p6TeV_powheg-pythia8.py b/genfragments/ThirteenPointSixTeV/qqWWZZ_4lplus_TuneCP5_13p6TeV_powheg-pythia8.py new file mode 100644 index 000000000000..6d87597c2ae4 --- /dev/null +++ b/genfragments/ThirteenPointSixTeV/qqWWZZ_4lplus_TuneCP5_13p6TeV_powheg-pythia8.py @@ -0,0 +1,41 @@ +import FWCore.ParameterSet.Config as cms +from Configuration.Generator.Pythia8CommonSettings_cfi import * +from Configuration.Generator.MCTunesRun3ECM13p6TeV.PythiaCP5Settings_cfi import * +from Configuration.Generator.PSweightsPythia.PythiaPSweightsSettings_cfi import * +from Configuration.Generator.Pythia8PowhegEmissionVetoSettings_cfi import * + +generator = cms.EDFilter( + "Pythia8ConcurrentHadronizerFilter", + maxEventsToPrint = cms.untracked.int32(1), + pythiaPylistVerbosity = cms.untracked.int32(1), + filterEfficiency = cms.untracked.double(1.0), + pythiaHepMCVerbosity = cms.untracked.bool(False), + comEnergy = cms.double(13600.), + PythiaParameters = cms.PSet( + pythia8CommonSettingsBlock, + pythia8CP5SettingsBlock, + pythia8PSweightsSettingsBlock, + pythia8PowhegEmissionVetoSettingsBlock, + processParameters = cms.vstring( + 'POWHEG:nFinal = 4', ## Number of final state particles + '23:mMin = 0.05', + '24:mMin = 0.05', + '23:onMode = off', # disable all Z decay modes + '23:onIfAny = 1 2 3 4 5 6 7 8 11 13 15', # enable only Z->ll and Z->qq + 'ResonanceDecayFilter:filter = on', + 'ResonanceDecayFilter:exclusive = off', #off: require at least the specified number of daughters, on: require exactly the specified number of daughters + 'ResonanceDecayFilter:mothers = 24,23', #? TBC! list of mothers not specified -> count all particles in hard process+resonance decays + 'ResonanceDecayFilter:eMuAsEquivalent = on', #on: treat electrons and muons as equivalent + 'ResonanceDecayFilter:daughters = 11,11,11,11', + ), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CP5Settings', + 'pythia8PSweightsSettings', + 'pythia8PowhegEmissionVetoSettings', + 'processParameters' + ) + ) + ) + + +ProductionFilterSequence = cms.Sequence(generator) From 6dac54e28a8a911574d2d5cbb456b91f3d8715e8 Mon Sep 17 00:00:00 2001 From: Ana Sculac <73283250+asculac@users.noreply.github.com> Date: Fri, 14 Feb 2025 13:34:31 +0100 Subject: [PATCH 14/17] fix qqWWZZ_3l_13TeV --- ...pythia8.py => qqWWZZ_3l_TuneCP5_13TeV_madgraph-pythia8.py} | 4 ---- 1 file changed, 4 deletions(-) rename genfragments/ThirteenTeV/{qqWWZZ_3l_TuneCP5_13TeV_powheg-pythia8.py => qqWWZZ_3l_TuneCP5_13TeV_madgraph-pythia8.py} (87%) diff --git a/genfragments/ThirteenTeV/qqWWZZ_3l_TuneCP5_13TeV_powheg-pythia8.py b/genfragments/ThirteenTeV/qqWWZZ_3l_TuneCP5_13TeV_madgraph-pythia8.py similarity index 87% rename from genfragments/ThirteenTeV/qqWWZZ_3l_TuneCP5_13TeV_powheg-pythia8.py rename to genfragments/ThirteenTeV/qqWWZZ_3l_TuneCP5_13TeV_madgraph-pythia8.py index 7b3fe4ddaf2f..bd4b5e9233cb 100644 --- a/genfragments/ThirteenTeV/qqWWZZ_3l_TuneCP5_13TeV_powheg-pythia8.py +++ b/genfragments/ThirteenTeV/qqWWZZ_3l_TuneCP5_13TeV_madgraph-pythia8.py @@ -2,7 +2,6 @@ from Configuration.Generator.Pythia8CommonSettings_cfi import * from Configuration.Generator.MCTunes2017.PythiaCP5Settings_cfi import * from Configuration.Generator.PSweightsPythia.PythiaPSweightsSettings_cfi import * -from Configuration.Generator.Pythia8PowhegEmissionVetoSettings_cfi import * generator = cms.EDFilter("Pythia8HadronizerFilter", maxEventsToPrint = cms.untracked.int32(1), @@ -14,9 +13,7 @@ pythia8CommonSettingsBlock, pythia8CP5SettingsBlock, pythia8PSweightsSettingsBlock, - pythia8PowhegEmissionVetoSettingsBlock, processParameters = cms.vstring( - 'POWHEG:nFinal = 4', ## Number of final state particles '23:mMin = 0.05', '24:mMin = 0.05', '23:onMode = off', # disable all Z decay modes @@ -30,7 +27,6 @@ parameterSets = cms.vstring('pythia8CommonSettings', 'pythia8CP5Settings', 'pythia8PSweightsSettings', - 'pythia8PowhegEmissionVetoSettings', 'processParameters' ) ) From ed4fce6270af5e421e7e9b6914230cc5e982a274 Mon Sep 17 00:00:00 2001 From: Ana Sculac <73283250+asculac@users.noreply.github.com> Date: Fri, 14 Feb 2025 13:36:12 +0100 Subject: [PATCH 15/17] fix qqWWZZ4lplus_13TeV --- ...8..py => qqWWZZ_4lplus_TuneCP5_13TeV_madgraph-pythia8..py} | 4 ---- 1 file changed, 4 deletions(-) rename genfragments/ThirteenTeV/{qqWWZZ_4lplus_TuneCP5_13TeV_powheg-pythia8..py => qqWWZZ_4lplus_TuneCP5_13TeV_madgraph-pythia8..py} (87%) diff --git a/genfragments/ThirteenTeV/qqWWZZ_4lplus_TuneCP5_13TeV_powheg-pythia8..py b/genfragments/ThirteenTeV/qqWWZZ_4lplus_TuneCP5_13TeV_madgraph-pythia8..py similarity index 87% rename from genfragments/ThirteenTeV/qqWWZZ_4lplus_TuneCP5_13TeV_powheg-pythia8..py rename to genfragments/ThirteenTeV/qqWWZZ_4lplus_TuneCP5_13TeV_madgraph-pythia8..py index df9981e7efdf..b779cdf3e616 100644 --- a/genfragments/ThirteenTeV/qqWWZZ_4lplus_TuneCP5_13TeV_powheg-pythia8..py +++ b/genfragments/ThirteenTeV/qqWWZZ_4lplus_TuneCP5_13TeV_madgraph-pythia8..py @@ -2,7 +2,6 @@ from Configuration.Generator.Pythia8CommonSettings_cfi import * from Configuration.Generator.MCTunes2017.PythiaCP5Settings_cfi import * from Configuration.Generator.PSweightsPythia.PythiaPSweightsSettings_cfi import * -from Configuration.Generator.Pythia8PowhegEmissionVetoSettings_cfi import * generator = cms.EDFilter("Pythia8HadronizerFilter", @@ -15,9 +14,7 @@ pythia8CommonSettingsBlock, pythia8CP5SettingsBlock, pythia8PSweightsSettingsBlock, - pythia8PowhegEmissionVetoSettingsBlock, processParameters = cms.vstring( - 'POWHEG:nFinal = 4', ## Number of final state particles '23:mMin = 0.05', '24:mMin = 0.05', '23:onMode = off', # disable all Z decay modes @@ -31,7 +28,6 @@ parameterSets = cms.vstring('pythia8CommonSettings', 'pythia8CP5Settings', 'pythia8PSweightsSettings', - 'pythia8PowhegEmissionVetoSettings', 'processParameters' ) ) From 43c61b9889ed2faff42a524788a28d9af316b42e Mon Sep 17 00:00:00 2001 From: Ana Sculac <73283250+asculac@users.noreply.github.com> Date: Fri, 14 Feb 2025 13:37:50 +0100 Subject: [PATCH 16/17] fix qqWWZZ_3l_13p6TeV --- ...ythia8.py => qqWWZZ_3l_TuneCP5_13p6TeV_madgraph-pythia8.py} | 3 --- 1 file changed, 3 deletions(-) rename genfragments/ThirteenPointSixTeV/{qqWWZZ_3l_TuneCP5_13p6TeV_powheg-pythia8.py => qqWWZZ_3l_TuneCP5_13p6TeV_madgraph-pythia8.py} (90%) diff --git a/genfragments/ThirteenPointSixTeV/qqWWZZ_3l_TuneCP5_13p6TeV_powheg-pythia8.py b/genfragments/ThirteenPointSixTeV/qqWWZZ_3l_TuneCP5_13p6TeV_madgraph-pythia8.py similarity index 90% rename from genfragments/ThirteenPointSixTeV/qqWWZZ_3l_TuneCP5_13p6TeV_powheg-pythia8.py rename to genfragments/ThirteenPointSixTeV/qqWWZZ_3l_TuneCP5_13p6TeV_madgraph-pythia8.py index 8fbede3959b8..afcc5a706caa 100644 --- a/genfragments/ThirteenPointSixTeV/qqWWZZ_3l_TuneCP5_13p6TeV_powheg-pythia8.py +++ b/genfragments/ThirteenPointSixTeV/qqWWZZ_3l_TuneCP5_13p6TeV_madgraph-pythia8.py @@ -2,7 +2,6 @@ from Configuration.Generator.Pythia8CommonSettings_cfi import * from Configuration.Generator.MCTunesRun3ECM13p6TeV.PythiaCP5Settings_cfi import * from Configuration.Generator.PSweightsPythia.PythiaPSweightsSettings_cfi import * -from Configuration.Generator.Pythia8PowhegEmissionVetoSettings_cfi import * generator = cms.EDFilter( "Pythia8ConcurrentHadronizerFilter", @@ -17,7 +16,6 @@ pythia8PSweightsSettingsBlock, pythia8PowhegEmissionVetoSettingsBlock, processParameters = cms.vstring( - 'POWHEG:nFinal = 4', ## Number of final state particles '23:mMin = 0.05', '24:mMin = 0.05', '23:onMode = off', # disable all Z decay modes @@ -31,7 +29,6 @@ parameterSets = cms.vstring('pythia8CommonSettings', 'pythia8CP5Settings', 'pythia8PSweightsSettings', - 'pythia8PowhegEmissionVetoSettings', 'processParameters' ) ) From dc15858596b6fce4cfd0143857a0b6a5c8e8729f Mon Sep 17 00:00:00 2001 From: Ana Sculac <73283250+asculac@users.noreply.github.com> Date: Fri, 14 Feb 2025 13:38:43 +0100 Subject: [PATCH 17/17] fix qqWWZZ4lplus_13p6TeV --- ...8.py => qqWWZZ_4lplus_TuneCP5_13p6TeV_madgraph-pythia8.py} | 4 ---- 1 file changed, 4 deletions(-) rename genfragments/ThirteenPointSixTeV/{qqWWZZ_4lplus_TuneCP5_13p6TeV_powheg-pythia8.py => qqWWZZ_4lplus_TuneCP5_13p6TeV_madgraph-pythia8.py} (88%) diff --git a/genfragments/ThirteenPointSixTeV/qqWWZZ_4lplus_TuneCP5_13p6TeV_powheg-pythia8.py b/genfragments/ThirteenPointSixTeV/qqWWZZ_4lplus_TuneCP5_13p6TeV_madgraph-pythia8.py similarity index 88% rename from genfragments/ThirteenPointSixTeV/qqWWZZ_4lplus_TuneCP5_13p6TeV_powheg-pythia8.py rename to genfragments/ThirteenPointSixTeV/qqWWZZ_4lplus_TuneCP5_13p6TeV_madgraph-pythia8.py index 6d87597c2ae4..d3366c3cf7d9 100644 --- a/genfragments/ThirteenPointSixTeV/qqWWZZ_4lplus_TuneCP5_13p6TeV_powheg-pythia8.py +++ b/genfragments/ThirteenPointSixTeV/qqWWZZ_4lplus_TuneCP5_13p6TeV_madgraph-pythia8.py @@ -2,7 +2,6 @@ from Configuration.Generator.Pythia8CommonSettings_cfi import * from Configuration.Generator.MCTunesRun3ECM13p6TeV.PythiaCP5Settings_cfi import * from Configuration.Generator.PSweightsPythia.PythiaPSweightsSettings_cfi import * -from Configuration.Generator.Pythia8PowhegEmissionVetoSettings_cfi import * generator = cms.EDFilter( "Pythia8ConcurrentHadronizerFilter", @@ -15,9 +14,7 @@ pythia8CommonSettingsBlock, pythia8CP5SettingsBlock, pythia8PSweightsSettingsBlock, - pythia8PowhegEmissionVetoSettingsBlock, processParameters = cms.vstring( - 'POWHEG:nFinal = 4', ## Number of final state particles '23:mMin = 0.05', '24:mMin = 0.05', '23:onMode = off', # disable all Z decay modes @@ -31,7 +28,6 @@ parameterSets = cms.vstring('pythia8CommonSettings', 'pythia8CP5Settings', 'pythia8PSweightsSettings', - 'pythia8PowhegEmissionVetoSettings', 'processParameters' ) )