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( '8000002:new b13 b13bar 2 -1 1 900 10 800 1000 0', '8000002:doForceWidth = 1', '6:m0 = 172.5 ! top mass', '8000002:mayDecay = 1', '8000002:oneChannel = 1 0.3334 100 -24 6 ! add channel bprime to W t with BR=0.333', '8000002:addChannel = 1 0.3333 100 23 5 ! add channel bprime to Z b with BR=0.333', '8000002:addChannel = 1 0.3333 100 25 5 ! add channel bprime to H b with BR=0.333' ), parameterSets = cms.vstring('pythia8CommonSettings', 'pythia8CUEP8M1Settings', 'processParameters', ) ) )