import FWCore.ParameterSet.Config as cms from Configuration.Generator.Pythia8CommonSettings_cfi import * from Configuration.Generator.Pythia8CUEP8M1Settings_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, processParameters = cms.vstring( '8000001:new t23 t23bar 2 2 1 1800 10 1700 1900 0', '8000001:doForceWidth = 1', '6:m0 = 172.5 ! top mass', '8000001:mayDecay = 1', '8000001:oneChannel = 1 0.3334 100 24 5 ! add channel tprime to W b with BR=0.333', '8000001:addChannel = 1 0.3333 100 23 6 ! add channel tprime to Z t with BR=0.333', '8000001:addChannel = 1 0.3333 100 25 6 ! add channel tprime to H t with BR=0.333' ), parameterSets = cms.vstring('pythia8CommonSettings', 'pythia8CUEP8M1Settings', 'processParameters', ) ) )