diff --git a/Configuration/Generator/python/QQH1352T_14TeV_TuneCUETP8M1_cfi.py b/Configuration/Generator/python/QQH1352T_14TeV_TuneCUETP8M1_cfi.py new file mode 100644 index 0000000000000..43dffeb45eaed --- /dev/null +++ b/Configuration/Generator/python/QQH1352T_14TeV_TuneCUETP8M1_cfi.py @@ -0,0 +1,30 @@ +import FWCore.ParameterSet.Config as cms +from Configuration.Generator.Pythia8CommonSettings_cfi import * +from Configuration.Generator.Pythia8CUEP8M1Settings_cfi import * +generator = cms.EDFilter("Pythia8GeneratorFilter", + pythiaPylistVerbosity = cms.untracked.int32(1), + # put here the efficiency of your filter (1. if no filter) + filterEfficiency = cms.untracked.double(1.0), + comEnergy = cms.double(14000.0), + pythiaHepMCVerbosity = cms.untracked.bool(False), + # put here the cross section of your process (in pb) + crossSection = cms.untracked.double(0.388), + maxEventsToPrint = cms.untracked.int32(3), + PythiaParameters = cms.PSet( + pythia8CommonSettingsBlock, + pythia8CUEP8M1SettingsBlock, + processParameters = cms.vstring( + #'HiggsSM:gg2H = on', + 'HiggsSM:ff2Hff(t:WW) = on', + 'HiggsSM:ff2Hff(t:ZZ) = on', + '25:m0 = 135', + '25:onMode = off', + '25:onIfAny = 15', + ), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'processParameters', + ) + ) + ) + diff --git a/Configuration/Generator/python/TTbarLepton_14TeV_TuneCUETP8M1_cfi.py b/Configuration/Generator/python/TTbarLepton_14TeV_TuneCUETP8M1_cfi.py new file mode 100644 index 0000000000000..9c92f454f0d51 --- /dev/null +++ b/Configuration/Generator/python/TTbarLepton_14TeV_TuneCUETP8M1_cfi.py @@ -0,0 +1,29 @@ +import FWCore.ParameterSet.Config as cms +from Configuration.Generator.Pythia8CommonSettings_cfi import * +from Configuration.Generator.Pythia8CUEP8M1Settings_cfi import * + +generator = cms.EDFilter("Pythia8GeneratorFilter", + pythiaHepMCVerbosity = cms.untracked.bool(False), + maxEventsToPrint = cms.untracked.int32(0), + pythiaPylistVerbosity = cms.untracked.int32(0), + filterEfficiency = cms.untracked.double(1.0), + comEnergy = cms.double(14000.0), + PythiaParameters = cms.PSet( + pythia8CommonSettingsBlock, + pythia8CUEP8M1SettingsBlock, + processParameters = cms.vstring( + 'Top:gg2ttbar = on ', + 'Top:gg2ttbar = on ', + '6:m0 = 175 ', + '24:onMode = off', + '24:onIfAny = 11 12', + '24:onIfAny = 13 14', + '24:onIfAny = 15 16', + ), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'processParameters', + ) + ) + ) +ProductionFilterSequence = cms.Sequence(generator) diff --git a/Configuration/PyReleaseValidation/python/upgradeWorkflowComponents.py b/Configuration/PyReleaseValidation/python/upgradeWorkflowComponents.py index fdb422f101976..5a9a0e4b28615 100644 --- a/Configuration/PyReleaseValidation/python/upgradeWorkflowComponents.py +++ b/Configuration/PyReleaseValidation/python/upgradeWorkflowComponents.py @@ -1365,4 +1365,6 @@ def __init__(self, howMuch, dataset): ('QCD_Pt_1800_2400_14TeV_TuneCP5_cfi', UpgradeFragment(Kby(9,50), 'QCD_Pt_1800_2400_14')), ('DisplacedSUSY_stopToBottom_M_800_500mm_TuneCP5_14TeV_pythia8_cff', UpgradeFragment(Kby(9,50),'DisplacedSUSY_14TeV')), ('GluGluTo2Jets_M_300_2000_14TeV_Exhume_cff',UpgradeFragment(Kby(9,100),'GluGluTo2Jets_14TeV')), + ('TTbarLepton_14TeV_TuneCUETP8M1_cfi', UpgradeFragment(Kby(9,50),'TTbarLepton_14')), + ('QQH1352T_14TeV_TuneCUETP8M1_cfi', UpgradeFragment(Kby(9,50),'QQH1352T_14')), ])