diff --git a/README.md b/README.md index 982c12a..5bd97fb 100644 --- a/README.md +++ b/README.md @@ -12,14 +12,6 @@ source /cvmfs/cms.cern.ch/crab3/crab.sh voms-proxy-init --voms cms --valid 168:00 ``` -Run the above commands before the "Only once" section. Run the following after -the "Only once" section: -```bash -cd CMSSW_8_0_21/src -cmsenv -cd - -``` - ### Only once Create a directory to keep all your LLP files and directories and move into it. Checkout the master branch of this repository: @@ -28,91 +20,9 @@ git clone git@github.com:benkrikler/LLP_generation.git cd LLP_generation ``` -Checkout CMSSW version `8_0_21`: -```bash -export SCRAM_ARCH=slc6_amd64_gcc530 -cmsrel CMSSW_8_0_21 -cd CMSSW_8_0_21/src -cmsenv -mkdir -p Configuration/GenProduction/python/ -cp ../../fragments/T1qqqqLL_fragment.py Configuration/GenProduction/python/ -scram b -j 9 -cd - -``` - ## Commands to produce the CMSSW config files -This repository already contains the files produced by the following commands. -But for reference, here are the commands for each step. - -### GEN-SIM -Runs Madgraph and Pythia -```bash -cmsDriver.py Configuration/GenProduction/python/T1qqqqLL_fragment.py \ - --mc \ - --eventcontent RAWSIM \ - --customise_commands "process.source.numberEventsInLuminosityBlock = cms.untracked.uint32(50) \n process.source.firstRun = cms.untracked.uint32(3) \n process.generator.initialSeed = cms.untracked.uint32(3)" \ - --datatier GEN-SIM \ - --conditions 80X_mcRun2_asymptotic_2016_TrancheIV_v6 \ - --beamspot Realistic50ns13TeVCollision \ - --step GEN,SIM \ - --magField 38T_PostLS1 \ - --fileout file:T1qqqqLL_GEN-SIM.root \ - --python_filename step1_T1qqqqLL_GEN-SIM_cfg.py \ - --no_exec \ - -n 50 -``` - -### PU Mixing -Run the PU mixing step over all events produced by the GEN-SIM step -```bash -cmsDriver.py --mc \ - --eventcontent PREMIXRAW \ - --datatier GEN-SIM-RAW \ - --conditions 80X_mcRun2_asymptotic_2016_TrancheIV_v6 \ - --step DIGIPREMIX_S2,DATAMIX,L1,DIGI2RAW,HLT:@frozen2016 \ - --nThreads 4 \ - --datamix PreMix \ - --era Run2_2016 \ - --filein file:T1qqqqLL_GEN-SIM.root \ - --fileout file:T1qqqqLL_PUMix.root \ - --python_filename step2_T1qqqqLL_PUMix_cfg.py \ - --pileup_input "/store/mc/RunIISpring15PrePremix/Neutrino_E-10_gun/GEN-SIM-DIGI-RAW/PUMoriond17_80X_mcRun2_asymptotic_2016_TrancheIV_v2-v2/90023/FED016AB-6A85-E611-96E7-002590A80DF0.root" \ - --no_exec \ - -n -1 -``` - -### AODSIM -```bash -cmsDriver.py --mc \ - --eventcontent AODSIM,DQM \ - --runUnscheduled \ - --datatier AODSIM,DQMIO \ - --conditions 80X_mcRun2_asymptotic_2016_TrancheIV_v6 \ - --step RAW2DIGI,RECO,EI,DQM:DQMOfflinePOGMC \ - --nThreads 4 \ - --era Run2_2016 \ - --filein file:T1qqqqLL_PUMix.root \ - --fileout file:T1qqqqLL_AODSIM.root \ - --python_filename step3_T1qqqqLL_AODSIM_cfg.py \ - --no_exec \ - -n -1 -``` - -### MINIAODSIM -```bash -cmsDriver.py --mc \ - --eventcontent MINIAODSIM \ - --runUnscheduled \ - --datatier MINIAODSIM \ - --conditions 80X_mcRun2_asymptotic_2016_TrancheIV_v6 \ - --step PAT \ - --era Run2_2016 \ - --filein file:T1qqqqLL_AODSIM.root \ - --fileout file:T1qqqqLL_MINIAODSIM.root \ - --python_filename step4_T1qqqqLL_MINIAODSIM_cfg.py \ - --no_exec \ - -n -1 -``` +The `cmsDriver.py` commands used to produce the CMSSW config files can be found +in the READMEs of the respective subdirectories of this repository. ## How to submit To submit locally, just run pass the CMSSW config file to cmsRun: diff --git a/T1qqqqLL_fullsim/README.md b/T1qqqqLL_fullsim/README.md new file mode 100644 index 0000000..9a5f68f --- /dev/null +++ b/T1qqqqLL_fullsim/README.md @@ -0,0 +1,85 @@ +# T1qqqqLL full sim production + +## Setup CMSSW + +Checkout CMSSW version `8_0_21`: +```bash +export SCRAM_ARCH=slc6_amd64_gcc530 +cmsrel CMSSW_8_0_21 +cd CMSSW_8_0_21/src +cmsenv +mkdir -p Configuration/GenProduction/python/ +cp ../../fragments/T1qqqqLL_fragment.py Configuration/GenProduction/python/ +scram b -j 9 +cd - +``` + +### GEN-SIM +Runs Madgraph and Pythia +```bash +cmsDriver.py Configuration/GenProduction/python/T1qqqqLL_fragment.py \ + --mc \ + --eventcontent RAWSIM \ + --customise_commands "process.source.numberEventsInLuminosityBlock = cms.untracked.uint32(50) \n process.source.firstRun = cms.untracked.uint32(3) \n process.generator.initialSeed = cms.untracked.uint32(3)" \ + --datatier GEN-SIM \ + --conditions 80X_mcRun2_asymptotic_2016_TrancheIV_v6 \ + --beamspot Realistic50ns13TeVCollision \ + --step GEN,SIM \ + --magField 38T_PostLS1 \ + --fileout file:T1qqqqLL_GEN-SIM.root \ + --python_filename step1_T1qqqqLL_GEN-SIM_cfg.py \ + --no_exec \ + -n 50 +``` + +### PU Mixing +Run the PU mixing step over all events produced by the GEN-SIM step +```bash +cmsDriver.py --mc \ + --eventcontent PREMIXRAW \ + --datatier GEN-SIM-RAW \ + --conditions 80X_mcRun2_asymptotic_2016_TrancheIV_v6 \ + --step DIGIPREMIX_S2,DATAMIX,L1,DIGI2RAW,HLT:@frozen2016 \ + --nThreads 4 \ + --datamix PreMix \ + --era Run2_2016 \ + --filein file:T1qqqqLL_GEN-SIM.root \ + --fileout file:T1qqqqLL_PUMix.root \ + --python_filename step2_T1qqqqLL_PUMix_cfg.py \ + --pileup_input "/store/mc/RunIISpring15PrePremix/Neutrino_E-10_gun/GEN-SIM-DIGI-RAW/PUMoriond17_80X_mcRun2_asymptotic_2016_TrancheIV_v2-v2/90023/FED016AB-6A85-E611-96E7-002590A80DF0.root" \ + --no_exec \ + -n -1 +``` + +### AODSIM +```bash +cmsDriver.py --mc \ + --eventcontent AODSIM,DQM \ + --runUnscheduled \ + --datatier AODSIM,DQMIO \ + --conditions 80X_mcRun2_asymptotic_2016_TrancheIV_v6 \ + --step RAW2DIGI,RECO,EI,DQM:DQMOfflinePOGMC \ + --nThreads 4 \ + --era Run2_2016 \ + --filein file:T1qqqqLL_PUMix.root \ + --fileout file:T1qqqqLL_AODSIM.root \ + --python_filename step3_T1qqqqLL_AODSIM_cfg.py \ + --no_exec \ + -n -1 +``` + +### MINIAODSIM +```bash +cmsDriver.py --mc \ + --eventcontent MINIAODSIM \ + --runUnscheduled \ + --datatier MINIAODSIM \ + --conditions 80X_mcRun2_asymptotic_2016_TrancheIV_v6 \ + --step PAT \ + --era Run2_2016 \ + --filein file:T1qqqqLL_AODSIM.root \ + --fileout file:T1qqqqLL_MINIAODSIM.root \ + --python_filename step4_T1qqqqLL_MINIAODSIM_cfg.py \ + --no_exec \ + -n -1 +``` diff --git a/crab_submission_AODSIM.py b/T1qqqqLL_fullsim/crab_submission_AODSIM.py similarity index 100% rename from crab_submission_AODSIM.py rename to T1qqqqLL_fullsim/crab_submission_AODSIM.py diff --git a/crab_submission_GEN-SIM.py b/T1qqqqLL_fullsim/crab_submission_GEN-SIM.py similarity index 100% rename from crab_submission_GEN-SIM.py rename to T1qqqqLL_fullsim/crab_submission_GEN-SIM.py diff --git a/crab_submission_MINIAODSIM.py b/T1qqqqLL_fullsim/crab_submission_MINIAODSIM.py similarity index 100% rename from crab_submission_MINIAODSIM.py rename to T1qqqqLL_fullsim/crab_submission_MINIAODSIM.py diff --git a/crab_submission_PUMix.py b/T1qqqqLL_fullsim/crab_submission_PUMix.py similarity index 100% rename from crab_submission_PUMix.py rename to T1qqqqLL_fullsim/crab_submission_PUMix.py diff --git a/fragments/T1qqqqLL_fragment.py b/T1qqqqLL_fullsim/fragments/T1qqqqLL_fragment.py similarity index 100% rename from fragments/T1qqqqLL_fragment.py rename to T1qqqqLL_fullsim/fragments/T1qqqqLL_fragment.py diff --git a/step1_T1qqqqLL_GEN-SIM_cfg.py b/T1qqqqLL_fullsim/step1_T1qqqqLL_GEN-SIM_cfg.py similarity index 100% rename from step1_T1qqqqLL_GEN-SIM_cfg.py rename to T1qqqqLL_fullsim/step1_T1qqqqLL_GEN-SIM_cfg.py diff --git a/step2_T1qqqqLL_PUMix_cfg.py b/T1qqqqLL_fullsim/step2_T1qqqqLL_PUMix_cfg.py similarity index 100% rename from step2_T1qqqqLL_PUMix_cfg.py rename to T1qqqqLL_fullsim/step2_T1qqqqLL_PUMix_cfg.py diff --git a/step3_T1qqqqLL_AODSIM_cfg.py b/T1qqqqLL_fullsim/step3_T1qqqqLL_AODSIM_cfg.py similarity index 100% rename from step3_T1qqqqLL_AODSIM_cfg.py rename to T1qqqqLL_fullsim/step3_T1qqqqLL_AODSIM_cfg.py diff --git a/step4_T1qqqqLL_MINIAODSIM_cfg.py b/T1qqqqLL_fullsim/step4_T1qqqqLL_MINIAODSIM_cfg.py similarity index 100% rename from step4_T1qqqqLL_MINIAODSIM_cfg.py rename to T1qqqqLL_fullsim/step4_T1qqqqLL_MINIAODSIM_cfg.py diff --git a/T1qqqq_fastsim/README.md b/T1qqqq_fastsim/README.md new file mode 100644 index 0000000..e5baeb7 --- /dev/null +++ b/T1qqqq_fastsim/README.md @@ -0,0 +1,74 @@ +# Setup commands + +## Gridpack to AODSIM +```bash +source /cvmfs/cms.cern.ch/cmsset_default.sh +export SCRAM_ARCH=slc6_amd64_gcc530 +if [ -r CMSSW_8_0_5_patch1/src ] +then + echo release CMSSW_8_0_5_patch1 already exists +else + scram p CMSSW CMSSW_8_0_5_patch1 +fi +cd CMSSW_8_0_5_patch1/src +eval `scram runtime -sh` + +export X509_USER_PROXY=$HOME/private/personal/voms_proxy.cert +mkdir -p Configuration/GenProduction/python/ +cp ../../fragments/T1qqqq_fragment.py Configuration/GenProduction/python/ + +scram b +cd ../../ +cmsDriver.py Configuration/GenProduction/python/T1qqqq_fragment.py \ + --fileout file:SUS-RunIISpring16FSPremix-00008.root \ + --pileup_input "dbs:/Neutrino_E-10_gun/RunIISpring16FSPremix-PUSpring16_80X_mcRun2_asymptotic_2016_v3-v1/GEN-SIM-DIGI-RAW" \ + --mc \ + --eventcontent AODSIM \ + --fast \ + --customise SimGeneral/DataMixingModule/customiseForPremixingInput.customiseForPreMixingInput,Configuration/DataProcessing/Utils.addMonitoring \ + --datatier AODSIM \ + --conditions 80X_mcRun2_asymptotic_v12 \ + --beamspot Realistic50ns13TeVCollision \ + --customise_commands "process.source.numberEventsInLuminosityBlock = cms.untracked.uint32(200)" \ + --step GEN,SIM,RECOBEFMIX,DIGIPREMIX_S2,DATAMIX,L1,DIGI2RAW,L1Reco,RECO,HLT:@fake1 \ + --datamix PreMix \ + --era Run2_25ns \ + --python_filename step1_T1qqqq_AODSIM_cfg.py \ + --no_exec \ + -n 2880 || exit $? +``` + +## AODSIM to MINIAODSIM + +```bash +source /cvmfs/cms.cern.ch/cmsset_default.sh +export SCRAM_ARCH=slc6_amd64_gcc530 +if [ -r CMSSW_8_0_5_patch1/src ] +then + echo release CMSSW_8_0_5_patch1 already exists +else + scram p CMSSW CMSSW_8_0_5_patch1 +fi +cd CMSSW_8_0_5_patch1/src +eval `scram runtime -sh` + +export X509_USER_PROXY=$HOME/private/personal/voms_proxy.cert + +scram b +cd ../../ +cmsDriver.py step1 \ + --filein "dbs:/SMS-T1qqqq_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/RunIISpring16FSPremix-80X_mcRun2_asymptotic_v12-v2/AODSIM" \ + --fileout file:SUS-RunIISpring16MiniAODv2-00193.root \ + --mc \ + --eventcontent MINIAODSIM \ + --runUnscheduled \ + --fast \ + --datatier MINIAODSIM \ + --conditions 80X_mcRun2_asymptotic_2016_miniAODv2_v0 \ + --step PAT \ + --era Run2_25ns \ + --python_filename step2_T1qqqq_MINIAODSIM_cfg.py \ + --no_exec + --customise Configuration/DataProcessing/Utils.addMonitoring \ + -n 2880 || exit $? +``` diff --git a/T1qqqq_fastsim/crab_submission_GEN-SIM.py b/T1qqqq_fastsim/crab_submission_GEN-SIM.py new file mode 100644 index 0000000..b551211 --- /dev/null +++ b/T1qqqq_fastsim/crab_submission_GEN-SIM.py @@ -0,0 +1,22 @@ +from CRABClient.UserUtilities import config, getUsernameFromSiteDB +config = config() + +config.General.requestName = 'T1qqqq' +config.General.workArea = 'T1qqqq_GEN-SIM' +config.General.transferOutputs = True +config.General.transferLogs = True + +config.JobType.pluginName = 'PrivateMC' +config.JobType.psetName = 'step1_T1qqqq_AODSIM_cfg.py' + +config.Data.outputPrimaryDataset = 'T1qqqq_fastsim_Madgraph_Pythia' +config.Data.inputDBS = 'global' +config.Data.splitting = 'EventBased' +config.Data.unitsPerJob = 500 +config.Data.totalUnits = 100000 +config.Data.outLFNDirBase = '/store/user/%s/' % (getUsernameFromSiteDB()) +config.Data.publication = True +config.Data.outputDatasetTag = 'T1qqqq_fastsim_Madgraph_Pythia_test_GEN-SIM' + +config.Site.storageSite = 'T2_UK_London_IC' +#config.Site.storageSite = 'T2_UK_SGrid_Bristol' diff --git a/T1qqqq_fastsim/crab_submission_MINIAODSIM.py b/T1qqqq_fastsim/crab_submission_MINIAODSIM.py new file mode 100644 index 0000000..300300d --- /dev/null +++ b/T1qqqq_fastsim/crab_submission_MINIAODSIM.py @@ -0,0 +1,23 @@ +from CRABClient.UserUtilities import config, getUsernameFromSiteDB +config = config() + +config.General.requestName = 'T1qqqq' +config.General.workArea = 'T1qqqq_MINIAODSIM' +config.General.transferOutputs = True +config.General.transferLogs = True + +config.JobType.pluginName = 'ANALYSIS' +config.JobType.psetName = 'step2_T1qqqq_MINIAODSIM_cfg.py' +config.JobType.outputFiles = ['SUS-RunIISpring16MiniAODv2-00193.root'] + +config.Data.inputDataset = '/T1qqqq_fastsim_Madgraph_Pythia/sbreeze-T1qqqq_fastsim_Madgraph_Pythia_test_GEN-SIM-8b75c65b5e25064b691cce6206972a0a/USER' +config.Data.inputDBS = 'phys03' +config.Data.splitting = 'EventAwareLumiBased' +config.Data.unitsPerJob = 500 +config.Data.totalUnits = -1 +config.Data.outLFNDirBase = '/store/user/%s/' % (getUsernameFromSiteDB()) +config.Data.publication = True +config.Data.outputDatasetTag = 'T1qqqq_fastssim_Madgraph_Pythia_MINIAODSIM' + +config.Site.storageSite = 'T2_UK_London_IC' +#config.Site.storageSite = 'T2_UK_SGrid_Bristol' diff --git a/fragments/T1qqqq_fragment.py b/T1qqqq_fastsim/fragments/T1qqqq_fragment.py similarity index 98% rename from fragments/T1qqqq_fragment.py rename to T1qqqq_fastsim/fragments/T1qqqq_fragment.py index 32f1503..47495cc 100644 --- a/fragments/T1qqqq_fragment.py +++ b/T1qqqq_fastsim/fragments/T1qqqq_fragment.py @@ -123,10 +123,10 @@ def matchParams(mass): scanBlocks = [] -scanBlocks.append(gridBlock(600, 1200, 100, 100)) -scanBlocks.append(gridBlock(1200, 2301, 50, 100)) +scanBlocks.append(gridBlock(600, 650, 100, 100)) +#scanBlocks.append(gridBlock(1200, 2301, 50, 100)) minDM = 25 -ymin, ymed, ymax = 0, 500, 1600 +ymin, ymed, ymax = 0, 50, 100 # Number of events for mass point, in thousands @@ -220,4 +220,4 @@ def events(mass): SLHATableForPythia8 = cms.string('%s' % slhatable), PythiaParameters = basePythiaParameters, ), - ) \ No newline at end of file + ) diff --git a/T1qqqq_fastsim/step1_T1qqqq_AODSIM_cfg.py b/T1qqqq_fastsim/step1_T1qqqq_AODSIM_cfg.py new file mode 100644 index 0000000..600aeda --- /dev/null +++ b/T1qqqq_fastsim/step1_T1qqqq_AODSIM_cfg.py @@ -0,0 +1,25825 @@ +# Auto generated configuration file +# using: +# Revision: 1.19 +# Source: /local/reps/CMSSW/CMSSW/Configuration/Applications/python/ConfigBuilder.py,v +# with command line options: Configuration/GenProduction/python/T1qqqq_fragment.py --fileout file:SUS-RunIISpring16FSPremix-00008.root --pileup_input dbs:/Neutrino_E-10_gun/RunIISpring16FSPremix-PUSpring16_80X_mcRun2_asymptotic_2016_v3-v1/GEN-SIM-DIGI-RAW --mc --eventcontent AODSIM --fast --customise SimGeneral/DataMixingModule/customiseForPremixingInput.customiseForPreMixingInput,Configuration/DataProcessing/Utils.addMonitoring --datatier AODSIM --conditions 80X_mcRun2_asymptotic_v12 --beamspot Realistic50ns13TeVCollision --customise_commands process.source.numberEventsInLuminosityBlock = cms.untracked.uint32(200) --step GEN,SIM,RECOBEFMIX,DIGIPREMIX_S2,DATAMIX,L1,DIGI2RAW,L1Reco,RECO,HLT:@fake1 --datamix PreMix --era Run2_25ns --python_filename step1_T1qqqq_AODSIM_cfg.py --no_exec -n 2880 +import FWCore.ParameterSet.Config as cms + +from Configuration.StandardSequences.Eras import eras + +process = cms.Process('HLT',eras.Run2_25ns,eras.fastSim) + +# import of standard configurations +process.load('Configuration.StandardSequences.Services_cff') +process.load('SimGeneral.HepPDTESSource.pythiapdt_cfi') +process.load('FWCore.MessageService.MessageLogger_cfi') +process.load('Configuration.EventContent.EventContent_cff') +process.load('SimGeneral.MixingModule.mixNoPU_cfi') +process.load('FastSimulation.Configuration.Geometries_MC_cff') +process.load('Configuration.StandardSequences.MagneticField_cff') +process.load('Configuration.StandardSequences.Generator_cff') +process.load('IOMC.EventVertexGenerators.VtxSmearedRealistic50ns13TeVCollision_cfi') +process.load('GeneratorInterface.Core.genFilterSummary_cff') +process.load('FastSimulation.Configuration.SimIdeal_cff') +process.load('FastSimulation.Configuration.Reconstruction_BefMix_cff') +process.load('Configuration.StandardSequences.DigiDMPreMix_cff') +process.load('SimGeneral.MixingModule.digi_MixPreMix_cfi') +process.load('Configuration.StandardSequences.DataMixerPreMix_cff') +process.load('Configuration.StandardSequences.SimL1EmulatorDM_cff') +process.load('Configuration.StandardSequences.DigiToRawDM_cff') +process.load('FastSimulation.Configuration.L1Reco_cff') +process.load('FastSimulation.Configuration.Reconstruction_AftMix_cff') +process.load('HLTrigger.Configuration.HLT_Fake1_cff') +process.load('Configuration.StandardSequences.EndOfProcess_cff') +process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff') + +process.maxEvents = cms.untracked.PSet( + input = cms.untracked.int32(2880) +) + +# Input source +process.source = cms.Source("EmptySource") + +process.options = cms.untracked.PSet( + +) + +# Production Info +process.configurationMetadata = cms.untracked.PSet( + annotation = cms.untracked.string('Configuration/GenProduction/python/T1qqqq_fragment.py nevts:2880'), + name = cms.untracked.string('Applications'), + version = cms.untracked.string('$Revision: 1.19 $') +) + +# Output definition + +process.AODSIMoutput = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('generation_step') + ), + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('AODSIM'), + filterName = cms.untracked.string('') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(15728640), + fileName = cms.untracked.string('file:SUS-RunIISpring16FSPremix-00008.root'), + outputCommands = process.AODSIMEventContent.outputCommands +) + +# Additional output definition + +# Other statements +process.genstepfilter.triggerConditions=cms.vstring("generation_step") +process.mix.digitizers = cms.PSet(process.theDigitizersMixPreMix) +process.mixData.input.fileNames = cms.untracked.vstring(['/store/mc/RunIISpring16FSPremix/Neutrino_E-10_gun/GEN-SIM-DIGI-RAW/PUSpring16_80X_mcRun2_asymptotic_2016_v3-v1/00000/007F9F8A-EB14-E611-9918-00259075D72C.root', '/store/mc/RunIISpring16FSPremix/Neutrino_E-10_gun/GEN-SIM-DIGI-RAW/PUSpring16_80X_mcRun2_asymptotic_2016_v3-v1/00000/00A7A158-4E14-E611-A2E5-0025905B858E.root', '/store/mc/RunIISpring16FSPremix/Neutrino_E-10_gun/GEN-SIM-DIGI-RAW/PUSpring16_80X_mcRun2_asymptotic_2016_v3-v1/00000/00B28D0D-A214-E611-A9FA-0025904C4E28.root', '/store/mc/RunIISpring16FSPremix/Neutrino_E-10_gun/GEN-SIM-DIGI-RAW/PUSpring16_80X_mcRun2_asymptotic_2016_v3-v1/00000/00C7136F-8714-E611-9DD4-0025905B8564.root', '/store/mc/RunIISpring16FSPremix/Neutrino_E-10_gun/GEN-SIM-DIGI-RAW/PUSpring16_80X_mcRun2_asymptotic_2016_v3-v1/00000/00ECAC4F-5714-E611-ACAC-0CC47A4D76D0.root', '/store/mc/RunIISpring16FSPremix/Neutrino_E-10_gun/GEN-SIM-DIGI-RAW/PUSpring16_80X_mcRun2_asymptotic_2016_v3-v1/00000/02053F47-7B14-E611-904C-0025905C53D0.root', '/store/mc/RunIISpring16FSPremix/Neutrino_E-10_gun/GEN-SIM-DIGI-RAW/PUSpring16_80X_mcRun2_asymptotic_2016_v3-v1/00000/020ACED3-8C14-E611-9F4D-0025905B85DC.root', '/store/mc/RunIISpring16FSPremix/Neutrino_E-10_gun/GEN-SIM-DIGI-RAW/PUSpring16_80X_mcRun2_asymptotic_2016_v3-v1/00000/0259F967-6915-E611-8908-00304867FE4B.root', '/store/mc/RunIISpring16FSPremix/Neutrino_E-10_gun/GEN-SIM-DIGI-RAW/PUSpring16_80X_mcRun2_asymptotic_2016_v3-v1/00000/02600760-4E14-E611-B7D9-0025905B8592.root', '/store/mc/RunIISpring16FSPremix/Neutrino_E-10_gun/GEN-SIM-DIGI-RAW/PUSpring16_80X_mcRun2_asymptotic_2016_v3-v1/00000/027EC271-7714-E611-971C-0025905C5502.root']) +from Configuration.AlCa.GlobalTag import GlobalTag +process.GlobalTag = GlobalTag(process.GlobalTag, '80X_mcRun2_asymptotic_v12', '') + +process.generator = cms.EDFilter("Pythia8GeneratorFilter", + RandomizedParameters = cms.VPSet( (cms.PSet( + ConfigDescription = cms.string('T1qqqq_600_1'), + ConfigWeight = cms.double(378.978723404), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-600_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 118', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 6.000000e+02 # ~g\n 1000022 1.000000e+00 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_600_100'), + ConfigWeight = cms.double(378.978723404), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-600_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 118', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 6.000000e+02 # ~g\n 1000022 1.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_600_200'), + ConfigWeight = cms.double(378.978723404), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-600_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 118', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 6.000000e+02 # ~g\n 1000022 2.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_600_300'), + ConfigWeight = cms.double(378.978723404), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-600_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 118', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 6.000000e+02 # ~g\n 1000022 3.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_600_400'), + ConfigWeight = cms.double(378.978723404), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-600_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 118', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 6.000000e+02 # ~g\n 1000022 4.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_600_500'), + ConfigWeight = cms.double(378.978723404), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-600_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 118', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 6.000000e+02 # ~g\n 1000022 5.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_600_550'), + ConfigWeight = cms.double(378.978723404), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-600_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 118', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 6.000000e+02 # ~g\n 1000022 5.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_600_575'), + ConfigWeight = cms.double(378.978723404), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-600_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 118', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 6.000000e+02 # ~g\n 1000022 5.750000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_650_500'), + ConfigWeight = cms.double(232.578723404), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-650_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 118', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 6.500000e+02 # ~g\n 1000022 5.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_650_550'), + ConfigWeight = cms.double(232.578723404), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-650_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 118', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 6.500000e+02 # ~g\n 1000022 5.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_650_600'), + ConfigWeight = cms.double(232.578723404), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-650_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 118', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 6.500000e+02 # ~g\n 1000022 6.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_650_625'), + ConfigWeight = cms.double(232.578723404), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-650_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 118', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 6.500000e+02 # ~g\n 1000022 6.250000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_700_1'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-700_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 118', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 7.000000e+02 # ~g\n 1000022 1.000000e+00 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_700_100'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-700_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 118', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 7.000000e+02 # ~g\n 1000022 1.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_700_200'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-700_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 118', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 7.000000e+02 # ~g\n 1000022 2.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_700_300'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-700_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 118', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 7.000000e+02 # ~g\n 1000022 3.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_700_400'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-700_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 118', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 7.000000e+02 # ~g\n 1000022 4.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_700_500'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-700_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 118', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 7.000000e+02 # ~g\n 1000022 5.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_700_550'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-700_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 118', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 7.000000e+02 # ~g\n 1000022 5.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_700_600'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-700_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 118', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 7.000000e+02 # ~g\n 1000022 6.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_700_650'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-700_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 118', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 7.000000e+02 # ~g\n 1000022 6.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_700_675'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-700_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 118', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 7.000000e+02 # ~g\n 1000022 6.750000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_750_500'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-750_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 118', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 7.500000e+02 # ~g\n 1000022 5.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_750_550'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-750_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 118', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 7.500000e+02 # ~g\n 1000022 5.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_750_600'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-750_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 118', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 7.500000e+02 # ~g\n 1000022 6.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_750_650'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-750_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 118', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 7.500000e+02 # ~g\n 1000022 6.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_750_700'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-750_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 118', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 7.500000e+02 # ~g\n 1000022 7.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_750_725'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-750_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 118', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 7.500000e+02 # ~g\n 1000022 7.250000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_800_1'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-800_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 128', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 8.000000e+02 # ~g\n 1000022 1.000000e+00 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_800_100'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-800_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 128', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 8.000000e+02 # ~g\n 1000022 1.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_800_200'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-800_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 128', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 8.000000e+02 # ~g\n 1000022 2.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_800_300'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-800_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 128', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 8.000000e+02 # ~g\n 1000022 3.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_800_400'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-800_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 128', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 8.000000e+02 # ~g\n 1000022 4.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_800_500'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-800_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 128', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 8.000000e+02 # ~g\n 1000022 5.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_800_550'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-800_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 128', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 8.000000e+02 # ~g\n 1000022 5.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_800_600'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-800_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 128', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 8.000000e+02 # ~g\n 1000022 6.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_800_650'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-800_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 128', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 8.000000e+02 # ~g\n 1000022 6.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_800_700'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-800_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 128', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 8.000000e+02 # ~g\n 1000022 7.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_800_750'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-800_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 128', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 8.000000e+02 # ~g\n 1000022 7.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_800_775'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-800_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 128', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 8.000000e+02 # ~g\n 1000022 7.750000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_850_500'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-850_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 128', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 8.500000e+02 # ~g\n 1000022 5.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_850_550'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-850_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 128', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 8.500000e+02 # ~g\n 1000022 5.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_850_600'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-850_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 128', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 8.500000e+02 # ~g\n 1000022 6.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_850_650'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-850_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 128', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 8.500000e+02 # ~g\n 1000022 6.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_850_700'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-850_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 128', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 8.500000e+02 # ~g\n 1000022 7.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_850_750'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-850_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 128', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 8.500000e+02 # ~g\n 1000022 7.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_850_800'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-850_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 128', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 8.500000e+02 # ~g\n 1000022 8.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_850_825'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-850_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 128', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 8.500000e+02 # ~g\n 1000022 8.250000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_900_1'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-900_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 128', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 9.000000e+02 # ~g\n 1000022 1.000000e+00 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_900_100'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-900_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 128', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 9.000000e+02 # ~g\n 1000022 1.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_900_200'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-900_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 128', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 9.000000e+02 # ~g\n 1000022 2.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_900_300'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-900_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 128', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 9.000000e+02 # ~g\n 1000022 3.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_900_400'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-900_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 128', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 9.000000e+02 # ~g\n 1000022 4.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_900_500'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-900_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 128', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 9.000000e+02 # ~g\n 1000022 5.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_900_550'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-900_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 128', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 9.000000e+02 # ~g\n 1000022 5.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_900_600'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-900_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 128', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 9.000000e+02 # ~g\n 1000022 6.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_900_650'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-900_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 128', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 9.000000e+02 # ~g\n 1000022 6.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_900_700'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-900_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 128', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 9.000000e+02 # ~g\n 1000022 7.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_900_750'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-900_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 128', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 9.000000e+02 # ~g\n 1000022 7.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_900_800'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-900_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 128', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 9.000000e+02 # ~g\n 1000022 8.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_900_850'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-900_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 128', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 9.000000e+02 # ~g\n 1000022 8.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_900_875'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-900_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 128', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 9.000000e+02 # ~g\n 1000022 8.750000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_950_500'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-950_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 128', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 9.500000e+02 # ~g\n 1000022 5.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_950_550'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-950_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 128', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 9.500000e+02 # ~g\n 1000022 5.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_950_600'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-950_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 128', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 9.500000e+02 # ~g\n 1000022 6.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_950_650'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-950_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 128', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 9.500000e+02 # ~g\n 1000022 6.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_950_700'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-950_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 128', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 9.500000e+02 # ~g\n 1000022 7.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_950_750'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-950_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 128', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 9.500000e+02 # ~g\n 1000022 7.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_950_800'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-950_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 128', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 9.500000e+02 # ~g\n 1000022 8.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_950_850'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-950_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 128', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 9.500000e+02 # ~g\n 1000022 8.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_950_900'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-950_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 128', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 9.500000e+02 # ~g\n 1000022 9.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_950_925'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-950_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 128', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 9.500000e+02 # ~g\n 1000022 9.250000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1000_1'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1000_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 140', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.000000e+03 # ~g\n 1000022 1.000000e+00 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1000_100'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1000_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 140', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.000000e+03 # ~g\n 1000022 1.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1000_200'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1000_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 140', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.000000e+03 # ~g\n 1000022 2.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1000_300'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1000_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 140', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.000000e+03 # ~g\n 1000022 3.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1000_400'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1000_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 140', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.000000e+03 # ~g\n 1000022 4.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1000_500'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1000_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 140', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.000000e+03 # ~g\n 1000022 5.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1000_550'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1000_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 140', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.000000e+03 # ~g\n 1000022 5.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1000_600'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1000_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 140', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.000000e+03 # ~g\n 1000022 6.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1000_650'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1000_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 140', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.000000e+03 # ~g\n 1000022 6.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1000_700'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1000_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 140', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.000000e+03 # ~g\n 1000022 7.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1000_750'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1000_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 140', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.000000e+03 # ~g\n 1000022 7.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1000_800'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1000_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 140', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.000000e+03 # ~g\n 1000022 8.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1000_850'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1000_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 140', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.000000e+03 # ~g\n 1000022 8.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1000_900'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1000_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 140', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.000000e+03 # ~g\n 1000022 9.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1000_950'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1000_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 140', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.000000e+03 # ~g\n 1000022 9.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1000_975'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1000_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 140', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.000000e+03 # ~g\n 1000022 9.750000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1050_500'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1050_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 140', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.050000e+03 # ~g\n 1000022 5.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1050_550'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1050_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 140', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.050000e+03 # ~g\n 1000022 5.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1050_600'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1050_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 140', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.050000e+03 # ~g\n 1000022 6.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1050_650'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1050_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 140', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.050000e+03 # ~g\n 1000022 6.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1050_700'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1050_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 140', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.050000e+03 # ~g\n 1000022 7.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1050_750'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1050_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 140', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.050000e+03 # ~g\n 1000022 7.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1050_800'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1050_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 140', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.050000e+03 # ~g\n 1000022 8.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1050_850'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1050_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 140', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.050000e+03 # ~g\n 1000022 8.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1050_900'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1050_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 140', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.050000e+03 # ~g\n 1000022 9.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1050_950'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1050_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 140', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.050000e+03 # ~g\n 1000022 9.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1050_1000'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1050_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 140', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.050000e+03 # ~g\n 1000022 1.000000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1050_1025'), + ConfigWeight = cms.double(155.744680851), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1050_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 140', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.050000e+03 # ~g\n 1000022 1.025000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1100_1'), + ConfigWeight = cms.double(137.055319149), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1100_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 140', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.100000e+03 # ~g\n 1000022 1.000000e+00 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1100_100'), + ConfigWeight = cms.double(137.055319149), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1100_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 140', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.100000e+03 # ~g\n 1000022 1.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1100_200'), + ConfigWeight = cms.double(137.055319149), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1100_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 140', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.100000e+03 # ~g\n 1000022 2.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1100_300'), + ConfigWeight = cms.double(137.055319149), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1100_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 140', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.100000e+03 # ~g\n 1000022 3.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1100_400'), + ConfigWeight = cms.double(137.055319149), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1100_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 140', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.100000e+03 # ~g\n 1000022 4.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1100_500'), + ConfigWeight = cms.double(137.055319149), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1100_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 140', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.100000e+03 # ~g\n 1000022 5.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1100_550'), + ConfigWeight = cms.double(137.055319149), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1100_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 140', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.100000e+03 # ~g\n 1000022 5.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1100_600'), + ConfigWeight = cms.double(137.055319149), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1100_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 140', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.100000e+03 # ~g\n 1000022 6.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1100_650'), + ConfigWeight = cms.double(137.055319149), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1100_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 140', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.100000e+03 # ~g\n 1000022 6.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1100_700'), + ConfigWeight = cms.double(137.055319149), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1100_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 140', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.100000e+03 # ~g\n 1000022 7.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1100_750'), + ConfigWeight = cms.double(137.055319149), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1100_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 140', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.100000e+03 # ~g\n 1000022 7.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1100_800'), + ConfigWeight = cms.double(137.055319149), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1100_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 140', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.100000e+03 # ~g\n 1000022 8.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1100_850'), + ConfigWeight = cms.double(137.055319149), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1100_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 140', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.100000e+03 # ~g\n 1000022 8.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1100_900'), + ConfigWeight = cms.double(137.055319149), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1100_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 140', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.100000e+03 # ~g\n 1000022 9.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1100_950'), + ConfigWeight = cms.double(137.055319149), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1100_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 140', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.100000e+03 # ~g\n 1000022 9.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1100_1000'), + ConfigWeight = cms.double(137.055319149), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1100_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 140', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.100000e+03 # ~g\n 1000022 1.000000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1100_1050'), + ConfigWeight = cms.double(137.055319149), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1100_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 140', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.100000e+03 # ~g\n 1000022 1.050000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1100_1075'), + ConfigWeight = cms.double(137.055319149), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1100_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 140', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.100000e+03 # ~g\n 1000022 1.075000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1150_500'), + ConfigWeight = cms.double(98.6382978723), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1150_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 140', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.150000e+03 # ~g\n 1000022 5.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1150_550'), + ConfigWeight = cms.double(98.6382978723), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1150_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 140', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.150000e+03 # ~g\n 1000022 5.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1150_600'), + ConfigWeight = cms.double(98.6382978723), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1150_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 140', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.150000e+03 # ~g\n 1000022 6.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1150_650'), + ConfigWeight = cms.double(98.6382978723), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1150_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 140', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.150000e+03 # ~g\n 1000022 6.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1150_700'), + ConfigWeight = cms.double(98.6382978723), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1150_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 140', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.150000e+03 # ~g\n 1000022 7.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1150_750'), + ConfigWeight = cms.double(98.6382978723), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1150_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 140', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.150000e+03 # ~g\n 1000022 7.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1150_800'), + ConfigWeight = cms.double(98.6382978723), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1150_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 140', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.150000e+03 # ~g\n 1000022 8.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1150_850'), + ConfigWeight = cms.double(98.6382978723), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1150_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 140', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.150000e+03 # ~g\n 1000022 8.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1150_900'), + ConfigWeight = cms.double(98.6382978723), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1150_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 140', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.150000e+03 # ~g\n 1000022 9.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1150_950'), + ConfigWeight = cms.double(98.6382978723), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1150_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 140', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.150000e+03 # ~g\n 1000022 9.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1150_1000'), + ConfigWeight = cms.double(98.6382978723), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1150_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 140', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.150000e+03 # ~g\n 1000022 1.000000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1150_1050'), + ConfigWeight = cms.double(98.6382978723), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1150_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 140', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.150000e+03 # ~g\n 1000022 1.050000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1150_1100'), + ConfigWeight = cms.double(98.6382978723), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1150_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 140', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.150000e+03 # ~g\n 1000022 1.100000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1150_1125'), + ConfigWeight = cms.double(98.6382978723), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1150_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 140', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.150000e+03 # ~g\n 1000022 1.125000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1200_1'), + ConfigWeight = cms.double(68.7183673469), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1200_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.200000e+03 # ~g\n 1000022 1.000000e+00 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1200_100'), + ConfigWeight = cms.double(68.7183673469), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1200_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.200000e+03 # ~g\n 1000022 1.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1200_200'), + ConfigWeight = cms.double(68.7183673469), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1200_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.200000e+03 # ~g\n 1000022 2.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1200_300'), + ConfigWeight = cms.double(68.7183673469), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1200_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.200000e+03 # ~g\n 1000022 3.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1200_400'), + ConfigWeight = cms.double(68.7183673469), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1200_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.200000e+03 # ~g\n 1000022 4.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1200_500'), + ConfigWeight = cms.double(68.7183673469), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1200_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.200000e+03 # ~g\n 1000022 5.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1200_550'), + ConfigWeight = cms.double(68.7183673469), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1200_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.200000e+03 # ~g\n 1000022 5.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1200_600'), + ConfigWeight = cms.double(68.7183673469), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1200_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.200000e+03 # ~g\n 1000022 6.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1200_650'), + ConfigWeight = cms.double(68.7183673469), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1200_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.200000e+03 # ~g\n 1000022 6.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1200_700'), + ConfigWeight = cms.double(68.7183673469), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1200_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.200000e+03 # ~g\n 1000022 7.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1200_750'), + ConfigWeight = cms.double(68.7183673469), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1200_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.200000e+03 # ~g\n 1000022 7.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1200_800'), + ConfigWeight = cms.double(68.7183673469), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1200_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.200000e+03 # ~g\n 1000022 8.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1200_850'), + ConfigWeight = cms.double(68.7183673469), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1200_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.200000e+03 # ~g\n 1000022 8.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1200_900'), + ConfigWeight = cms.double(68.7183673469), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1200_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.200000e+03 # ~g\n 1000022 9.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1200_950'), + ConfigWeight = cms.double(68.7183673469), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1200_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.200000e+03 # ~g\n 1000022 9.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1200_1000'), + ConfigWeight = cms.double(68.7183673469), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1200_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.200000e+03 # ~g\n 1000022 1.000000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1200_1050'), + ConfigWeight = cms.double(68.7183673469), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1200_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.200000e+03 # ~g\n 1000022 1.050000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1200_1100'), + ConfigWeight = cms.double(68.7183673469), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1200_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.200000e+03 # ~g\n 1000022 1.100000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1200_1150'), + ConfigWeight = cms.double(68.7183673469), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1200_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.200000e+03 # ~g\n 1000022 1.150000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1200_1175'), + ConfigWeight = cms.double(68.7183673469), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1200_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.200000e+03 # ~g\n 1000022 1.175000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1250_1'), + ConfigWeight = cms.double(50.7918367347), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1250_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.250000e+03 # ~g\n 1000022 1.000000e+00 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1250_100'), + ConfigWeight = cms.double(50.7918367347), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1250_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.250000e+03 # ~g\n 1000022 1.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1250_200'), + ConfigWeight = cms.double(50.7918367347), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1250_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.250000e+03 # ~g\n 1000022 2.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1250_300'), + ConfigWeight = cms.double(50.7918367347), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1250_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.250000e+03 # ~g\n 1000022 3.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1250_400'), + ConfigWeight = cms.double(50.7918367347), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1250_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.250000e+03 # ~g\n 1000022 4.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1250_500'), + ConfigWeight = cms.double(50.7918367347), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1250_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.250000e+03 # ~g\n 1000022 5.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1250_550'), + ConfigWeight = cms.double(50.7918367347), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1250_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.250000e+03 # ~g\n 1000022 5.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1250_600'), + ConfigWeight = cms.double(50.7918367347), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1250_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.250000e+03 # ~g\n 1000022 6.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1250_650'), + ConfigWeight = cms.double(50.7918367347), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1250_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.250000e+03 # ~g\n 1000022 6.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1250_700'), + ConfigWeight = cms.double(50.7918367347), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1250_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.250000e+03 # ~g\n 1000022 7.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1250_750'), + ConfigWeight = cms.double(50.7918367347), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1250_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.250000e+03 # ~g\n 1000022 7.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1250_800'), + ConfigWeight = cms.double(50.7918367347), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1250_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.250000e+03 # ~g\n 1000022 8.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1250_850'), + ConfigWeight = cms.double(50.7918367347), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1250_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.250000e+03 # ~g\n 1000022 8.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1250_900'), + ConfigWeight = cms.double(50.7918367347), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1250_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.250000e+03 # ~g\n 1000022 9.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1250_950'), + ConfigWeight = cms.double(50.7918367347), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1250_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.250000e+03 # ~g\n 1000022 9.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1250_1000'), + ConfigWeight = cms.double(50.7918367347), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1250_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.250000e+03 # ~g\n 1000022 1.000000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1250_1050'), + ConfigWeight = cms.double(50.7918367347), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1250_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.250000e+03 # ~g\n 1000022 1.050000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1250_1100'), + ConfigWeight = cms.double(50.7918367347), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1250_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.250000e+03 # ~g\n 1000022 1.100000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1250_1150'), + ConfigWeight = cms.double(50.7918367347), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1250_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.250000e+03 # ~g\n 1000022 1.150000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1250_1200'), + ConfigWeight = cms.double(50.7918367347), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1250_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.250000e+03 # ~g\n 1000022 1.200000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1250_1225'), + ConfigWeight = cms.double(50.7918367347), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1250_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.250000e+03 # ~g\n 1000022 1.225000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1300_1'), + ConfigWeight = cms.double(36.8489795918), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1300_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.300000e+03 # ~g\n 1000022 1.000000e+00 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1300_100'), + ConfigWeight = cms.double(36.8489795918), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1300_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.300000e+03 # ~g\n 1000022 1.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1300_200'), + ConfigWeight = cms.double(36.8489795918), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1300_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.300000e+03 # ~g\n 1000022 2.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1300_300'), + ConfigWeight = cms.double(36.8489795918), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1300_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.300000e+03 # ~g\n 1000022 3.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1300_400'), + ConfigWeight = cms.double(36.8489795918), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1300_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.300000e+03 # ~g\n 1000022 4.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1300_500'), + ConfigWeight = cms.double(36.8489795918), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1300_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.300000e+03 # ~g\n 1000022 5.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1300_550'), + ConfigWeight = cms.double(36.8489795918), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1300_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.300000e+03 # ~g\n 1000022 5.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1300_600'), + ConfigWeight = cms.double(36.8489795918), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1300_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.300000e+03 # ~g\n 1000022 6.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1300_650'), + ConfigWeight = cms.double(36.8489795918), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1300_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.300000e+03 # ~g\n 1000022 6.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1300_700'), + ConfigWeight = cms.double(36.8489795918), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1300_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.300000e+03 # ~g\n 1000022 7.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1300_750'), + ConfigWeight = cms.double(36.8489795918), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1300_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.300000e+03 # ~g\n 1000022 7.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1300_800'), + ConfigWeight = cms.double(36.8489795918), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1300_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.300000e+03 # ~g\n 1000022 8.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1300_850'), + ConfigWeight = cms.double(36.8489795918), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1300_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.300000e+03 # ~g\n 1000022 8.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1300_900'), + ConfigWeight = cms.double(36.8489795918), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1300_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.300000e+03 # ~g\n 1000022 9.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1300_950'), + ConfigWeight = cms.double(36.8489795918), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1300_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.300000e+03 # ~g\n 1000022 9.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1300_1000'), + ConfigWeight = cms.double(36.8489795918), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1300_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.300000e+03 # ~g\n 1000022 1.000000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1300_1050'), + ConfigWeight = cms.double(36.8489795918), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1300_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.300000e+03 # ~g\n 1000022 1.050000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1300_1100'), + ConfigWeight = cms.double(36.8489795918), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1300_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.300000e+03 # ~g\n 1000022 1.100000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1300_1150'), + ConfigWeight = cms.double(36.8489795918), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1300_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.300000e+03 # ~g\n 1000022 1.150000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1300_1200'), + ConfigWeight = cms.double(36.8489795918), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1300_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.300000e+03 # ~g\n 1000022 1.200000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1300_1250'), + ConfigWeight = cms.double(36.8489795918), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1300_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.300000e+03 # ~g\n 1000022 1.250000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1300_1275'), + ConfigWeight = cms.double(36.8489795918), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1300_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.300000e+03 # ~g\n 1000022 1.275000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1350_1'), + ConfigWeight = cms.double(27.8857142857), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1350_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.350000e+03 # ~g\n 1000022 1.000000e+00 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1350_100'), + ConfigWeight = cms.double(27.8857142857), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1350_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.350000e+03 # ~g\n 1000022 1.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1350_200'), + ConfigWeight = cms.double(27.8857142857), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1350_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.350000e+03 # ~g\n 1000022 2.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1350_300'), + ConfigWeight = cms.double(27.8857142857), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1350_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.350000e+03 # ~g\n 1000022 3.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1350_400'), + ConfigWeight = cms.double(27.8857142857), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1350_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.350000e+03 # ~g\n 1000022 4.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1350_500'), + ConfigWeight = cms.double(27.8857142857), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1350_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.350000e+03 # ~g\n 1000022 5.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1350_550'), + ConfigWeight = cms.double(27.8857142857), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1350_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.350000e+03 # ~g\n 1000022 5.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1350_600'), + ConfigWeight = cms.double(27.8857142857), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1350_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.350000e+03 # ~g\n 1000022 6.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1350_650'), + ConfigWeight = cms.double(27.8857142857), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1350_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.350000e+03 # ~g\n 1000022 6.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1350_700'), + ConfigWeight = cms.double(27.8857142857), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1350_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.350000e+03 # ~g\n 1000022 7.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1350_750'), + ConfigWeight = cms.double(27.8857142857), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1350_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.350000e+03 # ~g\n 1000022 7.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1350_800'), + ConfigWeight = cms.double(27.8857142857), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1350_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.350000e+03 # ~g\n 1000022 8.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1350_850'), + ConfigWeight = cms.double(27.8857142857), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1350_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.350000e+03 # ~g\n 1000022 8.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1350_900'), + ConfigWeight = cms.double(27.8857142857), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1350_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.350000e+03 # ~g\n 1000022 9.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1350_950'), + ConfigWeight = cms.double(27.8857142857), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1350_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.350000e+03 # ~g\n 1000022 9.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1350_1000'), + ConfigWeight = cms.double(27.8857142857), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1350_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.350000e+03 # ~g\n 1000022 1.000000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1350_1050'), + ConfigWeight = cms.double(27.8857142857), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1350_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.350000e+03 # ~g\n 1000022 1.050000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1350_1100'), + ConfigWeight = cms.double(27.8857142857), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1350_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.350000e+03 # ~g\n 1000022 1.100000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1350_1150'), + ConfigWeight = cms.double(27.8857142857), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1350_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.350000e+03 # ~g\n 1000022 1.150000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1350_1200'), + ConfigWeight = cms.double(27.8857142857), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1350_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.350000e+03 # ~g\n 1000022 1.200000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1350_1250'), + ConfigWeight = cms.double(27.8857142857), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1350_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.350000e+03 # ~g\n 1000022 1.250000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1350_1300'), + ConfigWeight = cms.double(27.8857142857), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1350_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.350000e+03 # ~g\n 1000022 1.300000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1350_1325'), + ConfigWeight = cms.double(27.8857142857), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1350_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 143', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.350000e+03 # ~g\n 1000022 1.325000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1400_1'), + ConfigWeight = cms.double(20.0941176471), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1400_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 147', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.400000e+03 # ~g\n 1000022 1.000000e+00 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1400_100'), + ConfigWeight = cms.double(20.0941176471), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1400_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 147', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.400000e+03 # ~g\n 1000022 1.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1400_200'), + ConfigWeight = cms.double(20.0941176471), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1400_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 147', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.400000e+03 # ~g\n 1000022 2.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1400_300'), + ConfigWeight = cms.double(20.0941176471), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1400_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 147', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.400000e+03 # ~g\n 1000022 3.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1400_400'), + ConfigWeight = cms.double(20.0941176471), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1400_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 147', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.400000e+03 # ~g\n 1000022 4.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1400_500'), + ConfigWeight = cms.double(20.0941176471), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1400_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 147', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.400000e+03 # ~g\n 1000022 5.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1400_550'), + ConfigWeight = cms.double(20.0941176471), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1400_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 147', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.400000e+03 # ~g\n 1000022 5.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1400_600'), + ConfigWeight = cms.double(20.0941176471), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1400_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 147', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.400000e+03 # ~g\n 1000022 6.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1400_650'), + ConfigWeight = cms.double(20.0941176471), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1400_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 147', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.400000e+03 # ~g\n 1000022 6.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1400_700'), + ConfigWeight = cms.double(20.0941176471), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1400_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 147', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.400000e+03 # ~g\n 1000022 7.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1400_750'), + ConfigWeight = cms.double(20.0941176471), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1400_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 147', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.400000e+03 # ~g\n 1000022 7.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1400_800'), + ConfigWeight = cms.double(20.0941176471), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1400_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 147', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.400000e+03 # ~g\n 1000022 8.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1400_850'), + ConfigWeight = cms.double(20.0941176471), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1400_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 147', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.400000e+03 # ~g\n 1000022 8.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1400_900'), + ConfigWeight = cms.double(20.0941176471), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1400_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 147', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.400000e+03 # ~g\n 1000022 9.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1400_950'), + ConfigWeight = cms.double(20.0941176471), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1400_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 147', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.400000e+03 # ~g\n 1000022 9.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1400_1000'), + ConfigWeight = cms.double(20.0941176471), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1400_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 147', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.400000e+03 # ~g\n 1000022 1.000000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1400_1050'), + ConfigWeight = cms.double(20.0941176471), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1400_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 147', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.400000e+03 # ~g\n 1000022 1.050000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1400_1100'), + ConfigWeight = cms.double(20.0941176471), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1400_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 147', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.400000e+03 # ~g\n 1000022 1.100000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1400_1150'), + ConfigWeight = cms.double(20.0941176471), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1400_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 147', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.400000e+03 # ~g\n 1000022 1.150000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1400_1200'), + ConfigWeight = cms.double(20.0941176471), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1400_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 147', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.400000e+03 # ~g\n 1000022 1.200000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1400_1250'), + ConfigWeight = cms.double(20.0941176471), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1400_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 147', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.400000e+03 # ~g\n 1000022 1.250000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1400_1300'), + ConfigWeight = cms.double(20.0941176471), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1400_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 147', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.400000e+03 # ~g\n 1000022 1.300000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1400_1350'), + ConfigWeight = cms.double(20.0941176471), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1400_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 147', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.400000e+03 # ~g\n 1000022 1.350000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1400_1375'), + ConfigWeight = cms.double(20.0941176471), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1400_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 147', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.400000e+03 # ~g\n 1000022 1.375000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1450_1'), + ConfigWeight = cms.double(15.3098039216), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1450_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 147', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.450000e+03 # ~g\n 1000022 1.000000e+00 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1450_100'), + ConfigWeight = cms.double(15.3098039216), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1450_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 147', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.450000e+03 # ~g\n 1000022 1.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1450_200'), + ConfigWeight = cms.double(15.3098039216), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1450_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 147', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.450000e+03 # ~g\n 1000022 2.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1450_300'), + ConfigWeight = cms.double(15.3098039216), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1450_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 147', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.450000e+03 # ~g\n 1000022 3.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1450_400'), + ConfigWeight = cms.double(15.3098039216), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1450_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 147', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.450000e+03 # ~g\n 1000022 4.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1450_500'), + ConfigWeight = cms.double(15.3098039216), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1450_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 147', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.450000e+03 # ~g\n 1000022 5.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1450_550'), + ConfigWeight = cms.double(15.3098039216), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1450_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 147', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.450000e+03 # ~g\n 1000022 5.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1450_600'), + ConfigWeight = cms.double(15.3098039216), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1450_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 147', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.450000e+03 # ~g\n 1000022 6.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1450_650'), + ConfigWeight = cms.double(15.3098039216), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1450_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 147', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.450000e+03 # ~g\n 1000022 6.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1450_700'), + ConfigWeight = cms.double(15.3098039216), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1450_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 147', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.450000e+03 # ~g\n 1000022 7.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1450_750'), + ConfigWeight = cms.double(15.3098039216), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1450_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 147', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.450000e+03 # ~g\n 1000022 7.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1450_800'), + ConfigWeight = cms.double(15.3098039216), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1450_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 147', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.450000e+03 # ~g\n 1000022 8.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1450_850'), + ConfigWeight = cms.double(15.3098039216), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1450_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 147', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.450000e+03 # ~g\n 1000022 8.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1450_900'), + ConfigWeight = cms.double(15.3098039216), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1450_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 147', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.450000e+03 # ~g\n 1000022 9.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1450_950'), + ConfigWeight = cms.double(15.3098039216), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1450_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 147', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.450000e+03 # ~g\n 1000022 9.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1450_1000'), + ConfigWeight = cms.double(15.3098039216), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1450_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 147', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.450000e+03 # ~g\n 1000022 1.000000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1450_1050'), + ConfigWeight = cms.double(15.3098039216), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1450_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 147', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.450000e+03 # ~g\n 1000022 1.050000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1450_1100'), + ConfigWeight = cms.double(15.3098039216), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1450_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 147', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.450000e+03 # ~g\n 1000022 1.100000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1450_1150'), + ConfigWeight = cms.double(15.3098039216), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1450_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 147', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.450000e+03 # ~g\n 1000022 1.150000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1450_1200'), + ConfigWeight = cms.double(15.3098039216), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1450_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 147', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.450000e+03 # ~g\n 1000022 1.200000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1450_1250'), + ConfigWeight = cms.double(15.3098039216), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1450_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 147', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.450000e+03 # ~g\n 1000022 1.250000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1450_1300'), + ConfigWeight = cms.double(15.3098039216), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1450_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 147', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.450000e+03 # ~g\n 1000022 1.300000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1450_1350'), + ConfigWeight = cms.double(15.3098039216), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1450_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 147', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.450000e+03 # ~g\n 1000022 1.350000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1450_1400'), + ConfigWeight = cms.double(15.3098039216), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1450_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 147', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.450000e+03 # ~g\n 1000022 1.400000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1450_1425'), + ConfigWeight = cms.double(15.3098039216), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1450_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 147', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.450000e+03 # ~g\n 1000022 1.425000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1500_1'), + ConfigWeight = cms.double(10.9662921348), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1500_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.500000e+03 # ~g\n 1000022 1.000000e+00 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1500_100'), + ConfigWeight = cms.double(10.9662921348), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1500_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.500000e+03 # ~g\n 1000022 1.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1500_200'), + ConfigWeight = cms.double(10.9662921348), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1500_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.500000e+03 # ~g\n 1000022 2.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1500_300'), + ConfigWeight = cms.double(10.9662921348), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1500_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.500000e+03 # ~g\n 1000022 3.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1500_400'), + ConfigWeight = cms.double(10.9662921348), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1500_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.500000e+03 # ~g\n 1000022 4.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1500_500'), + ConfigWeight = cms.double(10.9662921348), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1500_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.500000e+03 # ~g\n 1000022 5.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1500_550'), + ConfigWeight = cms.double(10.9662921348), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1500_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.500000e+03 # ~g\n 1000022 5.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1500_600'), + ConfigWeight = cms.double(10.9662921348), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1500_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.500000e+03 # ~g\n 1000022 6.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1500_650'), + ConfigWeight = cms.double(10.9662921348), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1500_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.500000e+03 # ~g\n 1000022 6.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1500_700'), + ConfigWeight = cms.double(10.9662921348), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1500_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.500000e+03 # ~g\n 1000022 7.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1500_750'), + ConfigWeight = cms.double(10.9662921348), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1500_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.500000e+03 # ~g\n 1000022 7.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1500_800'), + ConfigWeight = cms.double(10.9662921348), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1500_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.500000e+03 # ~g\n 1000022 8.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1500_850'), + ConfigWeight = cms.double(10.9662921348), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1500_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.500000e+03 # ~g\n 1000022 8.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1500_900'), + ConfigWeight = cms.double(10.9662921348), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1500_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.500000e+03 # ~g\n 1000022 9.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1500_950'), + ConfigWeight = cms.double(10.9662921348), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1500_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.500000e+03 # ~g\n 1000022 9.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1500_1000'), + ConfigWeight = cms.double(10.9662921348), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1500_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.500000e+03 # ~g\n 1000022 1.000000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1500_1050'), + ConfigWeight = cms.double(10.9662921348), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1500_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.500000e+03 # ~g\n 1000022 1.050000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1500_1100'), + ConfigWeight = cms.double(10.9662921348), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1500_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.500000e+03 # ~g\n 1000022 1.100000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1500_1150'), + ConfigWeight = cms.double(10.9662921348), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1500_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.500000e+03 # ~g\n 1000022 1.150000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1500_1200'), + ConfigWeight = cms.double(10.9662921348), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1500_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.500000e+03 # ~g\n 1000022 1.200000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1500_1250'), + ConfigWeight = cms.double(10.9662921348), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1500_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.500000e+03 # ~g\n 1000022 1.250000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1500_1300'), + ConfigWeight = cms.double(10.9662921348), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1500_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.500000e+03 # ~g\n 1000022 1.300000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1500_1350'), + ConfigWeight = cms.double(10.9662921348), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1500_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.500000e+03 # ~g\n 1000022 1.350000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1500_1400'), + ConfigWeight = cms.double(10.9662921348), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1500_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.500000e+03 # ~g\n 1000022 1.400000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1500_1450'), + ConfigWeight = cms.double(10.9662921348), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1500_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.500000e+03 # ~g\n 1000022 1.450000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1500_1475'), + ConfigWeight = cms.double(10.9662921348), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1500_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.500000e+03 # ~g\n 1000022 1.475000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1550_1'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1550_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.550000e+03 # ~g\n 1000022 1.000000e+00 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1550_100'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1550_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.550000e+03 # ~g\n 1000022 1.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1550_200'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1550_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.550000e+03 # ~g\n 1000022 2.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1550_300'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1550_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.550000e+03 # ~g\n 1000022 3.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1550_400'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1550_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.550000e+03 # ~g\n 1000022 4.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1550_500'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1550_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.550000e+03 # ~g\n 1000022 5.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1550_550'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1550_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.550000e+03 # ~g\n 1000022 5.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1550_600'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1550_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.550000e+03 # ~g\n 1000022 6.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1550_650'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1550_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.550000e+03 # ~g\n 1000022 6.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1550_700'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1550_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.550000e+03 # ~g\n 1000022 7.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1550_750'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1550_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.550000e+03 # ~g\n 1000022 7.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1550_800'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1550_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.550000e+03 # ~g\n 1000022 8.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1550_850'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1550_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.550000e+03 # ~g\n 1000022 8.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1550_900'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1550_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.550000e+03 # ~g\n 1000022 9.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1550_950'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1550_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.550000e+03 # ~g\n 1000022 9.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1550_1000'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1550_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.550000e+03 # ~g\n 1000022 1.000000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1550_1050'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1550_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.550000e+03 # ~g\n 1000022 1.050000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1550_1100'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1550_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.550000e+03 # ~g\n 1000022 1.100000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1550_1150'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1550_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.550000e+03 # ~g\n 1000022 1.150000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1550_1200'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1550_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.550000e+03 # ~g\n 1000022 1.200000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1550_1250'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1550_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.550000e+03 # ~g\n 1000022 1.250000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1550_1300'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1550_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.550000e+03 # ~g\n 1000022 1.300000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1550_1350'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1550_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.550000e+03 # ~g\n 1000022 1.350000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1550_1400'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1550_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.550000e+03 # ~g\n 1000022 1.400000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1550_1450'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1550_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.550000e+03 # ~g\n 1000022 1.450000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1550_1500'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1550_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.550000e+03 # ~g\n 1000022 1.500000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1550_1525'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1550_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.550000e+03 # ~g\n 1000022 1.525000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1600_1'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1600_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.600000e+03 # ~g\n 1000022 1.000000e+00 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1600_100'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1600_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.600000e+03 # ~g\n 1000022 1.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1600_200'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1600_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.600000e+03 # ~g\n 1000022 2.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1600_300'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1600_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.600000e+03 # ~g\n 1000022 3.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1600_400'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1600_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.600000e+03 # ~g\n 1000022 4.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1600_500'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1600_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.600000e+03 # ~g\n 1000022 5.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1600_600'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1600_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.600000e+03 # ~g\n 1000022 6.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1600_650'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1600_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.600000e+03 # ~g\n 1000022 6.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1600_700'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1600_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.600000e+03 # ~g\n 1000022 7.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1600_750'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1600_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.600000e+03 # ~g\n 1000022 7.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1600_800'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1600_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.600000e+03 # ~g\n 1000022 8.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1600_850'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1600_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.600000e+03 # ~g\n 1000022 8.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1600_900'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1600_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.600000e+03 # ~g\n 1000022 9.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1600_950'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1600_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.600000e+03 # ~g\n 1000022 9.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1600_1000'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1600_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.600000e+03 # ~g\n 1000022 1.000000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1600_1050'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1600_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.600000e+03 # ~g\n 1000022 1.050000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1600_1100'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1600_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.600000e+03 # ~g\n 1000022 1.100000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1600_1150'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1600_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.600000e+03 # ~g\n 1000022 1.150000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1600_1200'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1600_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.600000e+03 # ~g\n 1000022 1.200000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1600_1250'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1600_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.600000e+03 # ~g\n 1000022 1.250000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1600_1300'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1600_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.600000e+03 # ~g\n 1000022 1.300000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1600_1350'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1600_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.600000e+03 # ~g\n 1000022 1.350000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1600_1400'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1600_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.600000e+03 # ~g\n 1000022 1.400000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1600_1450'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1600_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.600000e+03 # ~g\n 1000022 1.450000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1600_1500'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1600_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.600000e+03 # ~g\n 1000022 1.500000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1600_1550'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1600_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.600000e+03 # ~g\n 1000022 1.550000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1600_1575'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1600_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.600000e+03 # ~g\n 1000022 1.575000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1650_1'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1650_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.650000e+03 # ~g\n 1000022 1.000000e+00 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1650_100'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1650_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.650000e+03 # ~g\n 1000022 1.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1650_200'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1650_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.650000e+03 # ~g\n 1000022 2.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1650_300'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1650_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.650000e+03 # ~g\n 1000022 3.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1650_400'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1650_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.650000e+03 # ~g\n 1000022 4.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1650_500'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1650_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.650000e+03 # ~g\n 1000022 5.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1650_600'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1650_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.650000e+03 # ~g\n 1000022 6.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1650_650'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1650_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.650000e+03 # ~g\n 1000022 6.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1650_700'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1650_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.650000e+03 # ~g\n 1000022 7.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1650_750'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1650_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.650000e+03 # ~g\n 1000022 7.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1650_800'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1650_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.650000e+03 # ~g\n 1000022 8.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1650_850'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1650_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.650000e+03 # ~g\n 1000022 8.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1650_900'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1650_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.650000e+03 # ~g\n 1000022 9.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1650_950'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1650_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.650000e+03 # ~g\n 1000022 9.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1650_1000'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1650_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.650000e+03 # ~g\n 1000022 1.000000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1650_1050'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1650_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.650000e+03 # ~g\n 1000022 1.050000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1650_1100'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1650_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.650000e+03 # ~g\n 1000022 1.100000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1650_1150'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1650_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.650000e+03 # ~g\n 1000022 1.150000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1650_1200'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1650_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.650000e+03 # ~g\n 1000022 1.200000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1650_1250'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1650_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.650000e+03 # ~g\n 1000022 1.250000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1650_1300'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1650_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.650000e+03 # ~g\n 1000022 1.300000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1650_1350'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1650_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.650000e+03 # ~g\n 1000022 1.350000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1650_1400'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1650_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.650000e+03 # ~g\n 1000022 1.400000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1650_1450'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1650_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.650000e+03 # ~g\n 1000022 1.450000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1650_1500'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1650_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.650000e+03 # ~g\n 1000022 1.500000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1650_1550'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1650_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.650000e+03 # ~g\n 1000022 1.550000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1650_1600'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1650_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.650000e+03 # ~g\n 1000022 1.600000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1700_1'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1700_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.700000e+03 # ~g\n 1000022 1.000000e+00 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1700_100'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1700_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.700000e+03 # ~g\n 1000022 1.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1700_200'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1700_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.700000e+03 # ~g\n 1000022 2.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1700_300'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1700_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.700000e+03 # ~g\n 1000022 3.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1700_400'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1700_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.700000e+03 # ~g\n 1000022 4.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1700_500'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1700_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.700000e+03 # ~g\n 1000022 5.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1700_600'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1700_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.700000e+03 # ~g\n 1000022 6.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1700_700'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1700_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.700000e+03 # ~g\n 1000022 7.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1700_750'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1700_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.700000e+03 # ~g\n 1000022 7.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1700_800'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1700_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.700000e+03 # ~g\n 1000022 8.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1700_850'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1700_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.700000e+03 # ~g\n 1000022 8.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1700_900'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1700_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.700000e+03 # ~g\n 1000022 9.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1700_950'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1700_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.700000e+03 # ~g\n 1000022 9.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1700_1000'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1700_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.700000e+03 # ~g\n 1000022 1.000000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1700_1050'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1700_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.700000e+03 # ~g\n 1000022 1.050000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1700_1100'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1700_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.700000e+03 # ~g\n 1000022 1.100000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1700_1150'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1700_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.700000e+03 # ~g\n 1000022 1.150000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1700_1200'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1700_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.700000e+03 # ~g\n 1000022 1.200000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1700_1250'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1700_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.700000e+03 # ~g\n 1000022 1.250000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1700_1300'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1700_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.700000e+03 # ~g\n 1000022 1.300000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1700_1350'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1700_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.700000e+03 # ~g\n 1000022 1.350000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1700_1400'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1700_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.700000e+03 # ~g\n 1000022 1.400000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1700_1450'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1700_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.700000e+03 # ~g\n 1000022 1.450000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1700_1500'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1700_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.700000e+03 # ~g\n 1000022 1.500000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1700_1550'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1700_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.700000e+03 # ~g\n 1000022 1.550000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1700_1600'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1700_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.700000e+03 # ~g\n 1000022 1.600000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1750_1'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1750_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.750000e+03 # ~g\n 1000022 1.000000e+00 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1750_100'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1750_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.750000e+03 # ~g\n 1000022 1.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1750_200'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1750_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.750000e+03 # ~g\n 1000022 2.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1750_300'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1750_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.750000e+03 # ~g\n 1000022 3.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1750_400'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1750_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.750000e+03 # ~g\n 1000022 4.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1750_500'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1750_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.750000e+03 # ~g\n 1000022 5.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1750_600'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1750_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.750000e+03 # ~g\n 1000022 6.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1750_700'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1750_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.750000e+03 # ~g\n 1000022 7.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1750_750'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1750_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.750000e+03 # ~g\n 1000022 7.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1750_800'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1750_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.750000e+03 # ~g\n 1000022 8.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1750_850'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1750_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.750000e+03 # ~g\n 1000022 8.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1750_900'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1750_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.750000e+03 # ~g\n 1000022 9.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1750_950'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1750_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.750000e+03 # ~g\n 1000022 9.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1750_1000'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1750_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.750000e+03 # ~g\n 1000022 1.000000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1750_1050'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1750_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.750000e+03 # ~g\n 1000022 1.050000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1750_1100'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1750_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.750000e+03 # ~g\n 1000022 1.100000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1750_1150'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1750_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.750000e+03 # ~g\n 1000022 1.150000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1750_1200'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1750_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.750000e+03 # ~g\n 1000022 1.200000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1750_1250'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1750_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.750000e+03 # ~g\n 1000022 1.250000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1750_1300'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1750_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.750000e+03 # ~g\n 1000022 1.300000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1750_1350'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1750_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.750000e+03 # ~g\n 1000022 1.350000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1750_1400'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1750_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.750000e+03 # ~g\n 1000022 1.400000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1750_1450'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1750_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.750000e+03 # ~g\n 1000022 1.450000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1750_1500'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1750_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.750000e+03 # ~g\n 1000022 1.500000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1750_1550'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1750_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.750000e+03 # ~g\n 1000022 1.550000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1750_1600'), + ConfigWeight = cms.double(9.13857677903), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1750_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 150', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.750000e+03 # ~g\n 1000022 1.600000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1800_1'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1800_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.800000e+03 # ~g\n 1000022 1.000000e+00 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1800_100'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1800_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.800000e+03 # ~g\n 1000022 1.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1800_200'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1800_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.800000e+03 # ~g\n 1000022 2.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1800_300'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1800_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.800000e+03 # ~g\n 1000022 3.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1800_400'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1800_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.800000e+03 # ~g\n 1000022 4.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1800_500'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1800_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.800000e+03 # ~g\n 1000022 5.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1800_600'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1800_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.800000e+03 # ~g\n 1000022 6.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1800_700'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1800_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.800000e+03 # ~g\n 1000022 7.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1800_800'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1800_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.800000e+03 # ~g\n 1000022 8.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1800_850'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1800_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.800000e+03 # ~g\n 1000022 8.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1800_900'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1800_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.800000e+03 # ~g\n 1000022 9.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1800_950'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1800_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.800000e+03 # ~g\n 1000022 9.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1800_1000'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1800_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.800000e+03 # ~g\n 1000022 1.000000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1800_1050'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1800_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.800000e+03 # ~g\n 1000022 1.050000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1800_1100'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1800_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.800000e+03 # ~g\n 1000022 1.100000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1800_1150'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1800_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.800000e+03 # ~g\n 1000022 1.150000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1800_1200'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1800_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.800000e+03 # ~g\n 1000022 1.200000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1800_1250'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1800_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.800000e+03 # ~g\n 1000022 1.250000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1800_1300'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1800_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.800000e+03 # ~g\n 1000022 1.300000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1800_1350'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1800_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.800000e+03 # ~g\n 1000022 1.350000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1800_1400'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1800_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.800000e+03 # ~g\n 1000022 1.400000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1800_1450'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1800_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.800000e+03 # ~g\n 1000022 1.450000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1800_1500'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1800_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.800000e+03 # ~g\n 1000022 1.500000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1800_1550'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1800_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.800000e+03 # ~g\n 1000022 1.550000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1800_1600'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1800_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.800000e+03 # ~g\n 1000022 1.600000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1850_1'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1850_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.850000e+03 # ~g\n 1000022 1.000000e+00 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1850_100'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1850_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.850000e+03 # ~g\n 1000022 1.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1850_200'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1850_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.850000e+03 # ~g\n 1000022 2.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1850_300'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1850_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.850000e+03 # ~g\n 1000022 3.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1850_400'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1850_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.850000e+03 # ~g\n 1000022 4.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1850_500'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1850_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.850000e+03 # ~g\n 1000022 5.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1850_600'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1850_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.850000e+03 # ~g\n 1000022 6.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1850_700'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1850_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.850000e+03 # ~g\n 1000022 7.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1850_800'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1850_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.850000e+03 # ~g\n 1000022 8.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1850_850'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1850_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.850000e+03 # ~g\n 1000022 8.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1850_900'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1850_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.850000e+03 # ~g\n 1000022 9.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1850_950'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1850_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.850000e+03 # ~g\n 1000022 9.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1850_1000'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1850_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.850000e+03 # ~g\n 1000022 1.000000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1850_1050'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1850_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.850000e+03 # ~g\n 1000022 1.050000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1850_1100'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1850_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.850000e+03 # ~g\n 1000022 1.100000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1850_1150'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1850_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.850000e+03 # ~g\n 1000022 1.150000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1850_1200'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1850_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.850000e+03 # ~g\n 1000022 1.200000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1850_1250'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1850_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.850000e+03 # ~g\n 1000022 1.250000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1850_1300'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1850_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.850000e+03 # ~g\n 1000022 1.300000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1850_1350'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1850_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.850000e+03 # ~g\n 1000022 1.350000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1850_1400'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1850_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.850000e+03 # ~g\n 1000022 1.400000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1850_1450'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1850_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.850000e+03 # ~g\n 1000022 1.450000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1850_1500'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1850_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.850000e+03 # ~g\n 1000022 1.500000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1850_1550'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1850_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.850000e+03 # ~g\n 1000022 1.550000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1850_1600'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1850_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.850000e+03 # ~g\n 1000022 1.600000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1900_1'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1900_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.900000e+03 # ~g\n 1000022 1.000000e+00 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1900_100'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1900_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.900000e+03 # ~g\n 1000022 1.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1900_200'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1900_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.900000e+03 # ~g\n 1000022 2.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1900_300'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1900_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.900000e+03 # ~g\n 1000022 3.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1900_400'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1900_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.900000e+03 # ~g\n 1000022 4.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1900_500'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1900_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.900000e+03 # ~g\n 1000022 5.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1900_600'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1900_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.900000e+03 # ~g\n 1000022 6.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1900_700'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1900_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.900000e+03 # ~g\n 1000022 7.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1900_800'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1900_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.900000e+03 # ~g\n 1000022 8.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1900_900'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1900_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.900000e+03 # ~g\n 1000022 9.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1900_950'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1900_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.900000e+03 # ~g\n 1000022 9.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1900_1000'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1900_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.900000e+03 # ~g\n 1000022 1.000000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1900_1050'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1900_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.900000e+03 # ~g\n 1000022 1.050000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1900_1100'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1900_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.900000e+03 # ~g\n 1000022 1.100000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1900_1150'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1900_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.900000e+03 # ~g\n 1000022 1.150000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1900_1200'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1900_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.900000e+03 # ~g\n 1000022 1.200000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1900_1250'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1900_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.900000e+03 # ~g\n 1000022 1.250000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1900_1300'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1900_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.900000e+03 # ~g\n 1000022 1.300000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1900_1350'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1900_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.900000e+03 # ~g\n 1000022 1.350000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1900_1400'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1900_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.900000e+03 # ~g\n 1000022 1.400000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1900_1450'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1900_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.900000e+03 # ~g\n 1000022 1.450000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1900_1500'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1900_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.900000e+03 # ~g\n 1000022 1.500000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1900_1550'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1900_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.900000e+03 # ~g\n 1000022 1.550000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1900_1600'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1900_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.900000e+03 # ~g\n 1000022 1.600000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1950_1'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1950_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.950000e+03 # ~g\n 1000022 1.000000e+00 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1950_100'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1950_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.950000e+03 # ~g\n 1000022 1.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1950_200'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1950_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.950000e+03 # ~g\n 1000022 2.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1950_300'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1950_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.950000e+03 # ~g\n 1000022 3.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1950_400'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1950_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.950000e+03 # ~g\n 1000022 4.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1950_500'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1950_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.950000e+03 # ~g\n 1000022 5.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1950_600'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1950_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.950000e+03 # ~g\n 1000022 6.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1950_700'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1950_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.950000e+03 # ~g\n 1000022 7.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1950_800'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1950_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.950000e+03 # ~g\n 1000022 8.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1950_900'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1950_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.950000e+03 # ~g\n 1000022 9.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1950_950'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1950_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.950000e+03 # ~g\n 1000022 9.500000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1950_1000'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1950_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.950000e+03 # ~g\n 1000022 1.000000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1950_1050'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1950_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.950000e+03 # ~g\n 1000022 1.050000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1950_1100'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1950_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.950000e+03 # ~g\n 1000022 1.100000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1950_1150'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1950_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.950000e+03 # ~g\n 1000022 1.150000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1950_1200'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1950_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.950000e+03 # ~g\n 1000022 1.200000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1950_1250'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1950_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.950000e+03 # ~g\n 1000022 1.250000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1950_1300'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1950_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.950000e+03 # ~g\n 1000022 1.300000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1950_1350'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1950_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.950000e+03 # ~g\n 1000022 1.350000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1950_1400'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1950_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.950000e+03 # ~g\n 1000022 1.400000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1950_1450'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1950_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.950000e+03 # ~g\n 1000022 1.450000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1950_1500'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1950_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.950000e+03 # ~g\n 1000022 1.500000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1950_1550'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1950_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.950000e+03 # ~g\n 1000022 1.550000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_1950_1600'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-1950_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 1.950000e+03 # ~g\n 1000022 1.600000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2000_1'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2000_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.000000e+03 # ~g\n 1000022 1.000000e+00 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2000_100'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2000_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.000000e+03 # ~g\n 1000022 1.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2000_200'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2000_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.000000e+03 # ~g\n 1000022 2.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2000_300'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2000_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.000000e+03 # ~g\n 1000022 3.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2000_400'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2000_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.000000e+03 # ~g\n 1000022 4.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2000_500'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2000_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.000000e+03 # ~g\n 1000022 5.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2000_600'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2000_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.000000e+03 # ~g\n 1000022 6.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2000_700'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2000_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.000000e+03 # ~g\n 1000022 7.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2000_800'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2000_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.000000e+03 # ~g\n 1000022 8.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2000_900'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2000_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.000000e+03 # ~g\n 1000022 9.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2000_1000'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2000_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.000000e+03 # ~g\n 1000022 1.000000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2000_1050'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2000_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.000000e+03 # ~g\n 1000022 1.050000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2000_1100'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2000_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.000000e+03 # ~g\n 1000022 1.100000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2000_1150'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2000_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.000000e+03 # ~g\n 1000022 1.150000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2000_1200'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2000_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.000000e+03 # ~g\n 1000022 1.200000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2000_1250'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2000_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.000000e+03 # ~g\n 1000022 1.250000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2000_1300'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2000_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.000000e+03 # ~g\n 1000022 1.300000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2000_1350'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2000_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.000000e+03 # ~g\n 1000022 1.350000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2000_1400'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2000_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.000000e+03 # ~g\n 1000022 1.400000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2000_1450'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2000_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.000000e+03 # ~g\n 1000022 1.450000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2000_1500'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2000_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.000000e+03 # ~g\n 1000022 1.500000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2000_1550'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2000_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.000000e+03 # ~g\n 1000022 1.550000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2000_1600'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2000_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.000000e+03 # ~g\n 1000022 1.600000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2050_1'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2050_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.050000e+03 # ~g\n 1000022 1.000000e+00 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2050_100'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2050_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.050000e+03 # ~g\n 1000022 1.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2050_200'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2050_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.050000e+03 # ~g\n 1000022 2.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2050_300'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2050_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.050000e+03 # ~g\n 1000022 3.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2050_400'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2050_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.050000e+03 # ~g\n 1000022 4.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2050_500'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2050_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.050000e+03 # ~g\n 1000022 5.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2050_600'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2050_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.050000e+03 # ~g\n 1000022 6.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2050_700'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2050_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.050000e+03 # ~g\n 1000022 7.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2050_800'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2050_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.050000e+03 # ~g\n 1000022 8.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2050_900'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2050_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.050000e+03 # ~g\n 1000022 9.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2050_1000'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2050_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.050000e+03 # ~g\n 1000022 1.000000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2050_1050'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2050_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.050000e+03 # ~g\n 1000022 1.050000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2050_1100'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2050_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.050000e+03 # ~g\n 1000022 1.100000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2050_1150'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2050_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.050000e+03 # ~g\n 1000022 1.150000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2050_1200'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2050_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.050000e+03 # ~g\n 1000022 1.200000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2050_1250'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2050_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.050000e+03 # ~g\n 1000022 1.250000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2050_1300'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2050_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.050000e+03 # ~g\n 1000022 1.300000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2050_1350'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2050_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.050000e+03 # ~g\n 1000022 1.350000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2050_1400'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2050_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.050000e+03 # ~g\n 1000022 1.400000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2050_1450'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2050_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.050000e+03 # ~g\n 1000022 1.450000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2050_1500'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2050_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.050000e+03 # ~g\n 1000022 1.500000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2050_1550'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2050_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.050000e+03 # ~g\n 1000022 1.550000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2050_1600'), + ConfigWeight = cms.double(8.41379310345), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2050_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 156', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.050000e+03 # ~g\n 1000022 1.600000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2100_1'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2100_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.100000e+03 # ~g\n 1000022 1.000000e+00 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2100_100'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2100_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.100000e+03 # ~g\n 1000022 1.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2100_200'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2100_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.100000e+03 # ~g\n 1000022 2.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2100_300'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2100_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.100000e+03 # ~g\n 1000022 3.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2100_400'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2100_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.100000e+03 # ~g\n 1000022 4.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2100_500'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2100_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.100000e+03 # ~g\n 1000022 5.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2100_600'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2100_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.100000e+03 # ~g\n 1000022 6.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2100_700'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2100_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.100000e+03 # ~g\n 1000022 7.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2100_800'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2100_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.100000e+03 # ~g\n 1000022 8.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2100_900'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2100_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.100000e+03 # ~g\n 1000022 9.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2100_1000'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2100_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.100000e+03 # ~g\n 1000022 1.000000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2100_1100'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2100_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.100000e+03 # ~g\n 1000022 1.100000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2100_1150'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2100_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.100000e+03 # ~g\n 1000022 1.150000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2100_1200'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2100_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.100000e+03 # ~g\n 1000022 1.200000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2100_1250'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2100_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.100000e+03 # ~g\n 1000022 1.250000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2100_1300'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2100_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.100000e+03 # ~g\n 1000022 1.300000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2100_1350'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2100_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.100000e+03 # ~g\n 1000022 1.350000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2100_1400'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2100_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.100000e+03 # ~g\n 1000022 1.400000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2100_1450'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2100_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.100000e+03 # ~g\n 1000022 1.450000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2100_1500'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2100_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.100000e+03 # ~g\n 1000022 1.500000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2100_1550'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2100_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.100000e+03 # ~g\n 1000022 1.550000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2100_1600'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2100_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.100000e+03 # ~g\n 1000022 1.600000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2150_1'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2150_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.150000e+03 # ~g\n 1000022 1.000000e+00 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2150_100'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2150_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.150000e+03 # ~g\n 1000022 1.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2150_200'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2150_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.150000e+03 # ~g\n 1000022 2.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2150_300'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2150_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.150000e+03 # ~g\n 1000022 3.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2150_400'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2150_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.150000e+03 # ~g\n 1000022 4.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2150_500'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2150_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.150000e+03 # ~g\n 1000022 5.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2150_600'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2150_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.150000e+03 # ~g\n 1000022 6.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2150_700'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2150_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.150000e+03 # ~g\n 1000022 7.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2150_800'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2150_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.150000e+03 # ~g\n 1000022 8.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2150_900'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2150_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.150000e+03 # ~g\n 1000022 9.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2150_1000'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2150_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.150000e+03 # ~g\n 1000022 1.000000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2150_1100'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2150_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.150000e+03 # ~g\n 1000022 1.100000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2150_1150'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2150_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.150000e+03 # ~g\n 1000022 1.150000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2150_1200'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2150_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.150000e+03 # ~g\n 1000022 1.200000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2150_1250'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2150_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.150000e+03 # ~g\n 1000022 1.250000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2150_1300'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2150_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.150000e+03 # ~g\n 1000022 1.300000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2150_1350'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2150_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.150000e+03 # ~g\n 1000022 1.350000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2150_1400'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2150_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.150000e+03 # ~g\n 1000022 1.400000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2150_1450'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2150_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.150000e+03 # ~g\n 1000022 1.450000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2150_1500'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2150_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.150000e+03 # ~g\n 1000022 1.500000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2150_1550'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2150_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.150000e+03 # ~g\n 1000022 1.550000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2150_1600'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2150_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.150000e+03 # ~g\n 1000022 1.600000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2200_1'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2200_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.200000e+03 # ~g\n 1000022 1.000000e+00 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2200_100'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2200_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.200000e+03 # ~g\n 1000022 1.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2200_200'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2200_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.200000e+03 # ~g\n 1000022 2.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2200_300'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2200_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.200000e+03 # ~g\n 1000022 3.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2200_400'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2200_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.200000e+03 # ~g\n 1000022 4.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2200_500'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2200_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.200000e+03 # ~g\n 1000022 5.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2200_600'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2200_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.200000e+03 # ~g\n 1000022 6.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2200_700'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2200_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.200000e+03 # ~g\n 1000022 7.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2200_800'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2200_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.200000e+03 # ~g\n 1000022 8.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2200_900'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2200_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.200000e+03 # ~g\n 1000022 9.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2200_1000'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2200_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.200000e+03 # ~g\n 1000022 1.000000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2200_1100'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2200_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.200000e+03 # ~g\n 1000022 1.100000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2200_1200'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2200_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.200000e+03 # ~g\n 1000022 1.200000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2200_1250'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2200_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.200000e+03 # ~g\n 1000022 1.250000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2200_1300'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2200_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.200000e+03 # ~g\n 1000022 1.300000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2200_1350'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2200_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.200000e+03 # ~g\n 1000022 1.350000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2200_1400'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2200_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.200000e+03 # ~g\n 1000022 1.400000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2200_1450'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2200_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.200000e+03 # ~g\n 1000022 1.450000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2200_1500'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2200_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.200000e+03 # ~g\n 1000022 1.500000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2200_1550'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2200_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.200000e+03 # ~g\n 1000022 1.550000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2200_1600'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2200_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.200000e+03 # ~g\n 1000022 1.600000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2250_1'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2250_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.250000e+03 # ~g\n 1000022 1.000000e+00 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2250_100'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2250_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.250000e+03 # ~g\n 1000022 1.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2250_200'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2250_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.250000e+03 # ~g\n 1000022 2.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2250_300'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2250_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.250000e+03 # ~g\n 1000022 3.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2250_400'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2250_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.250000e+03 # ~g\n 1000022 4.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2250_500'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2250_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.250000e+03 # ~g\n 1000022 5.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2250_600'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2250_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.250000e+03 # ~g\n 1000022 6.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2250_700'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2250_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.250000e+03 # ~g\n 1000022 7.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2250_800'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2250_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.250000e+03 # ~g\n 1000022 8.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2250_900'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2250_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.250000e+03 # ~g\n 1000022 9.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2250_1000'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2250_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.250000e+03 # ~g\n 1000022 1.000000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2250_1100'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2250_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.250000e+03 # ~g\n 1000022 1.100000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2250_1200'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2250_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.250000e+03 # ~g\n 1000022 1.200000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2250_1250'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2250_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.250000e+03 # ~g\n 1000022 1.250000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2250_1300'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2250_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.250000e+03 # ~g\n 1000022 1.300000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2250_1350'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2250_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.250000e+03 # ~g\n 1000022 1.350000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2250_1400'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2250_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.250000e+03 # ~g\n 1000022 1.400000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2250_1450'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2250_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.250000e+03 # ~g\n 1000022 1.450000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2250_1500'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2250_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.250000e+03 # ~g\n 1000022 1.500000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2250_1550'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2250_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.250000e+03 # ~g\n 1000022 1.550000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2250_1600'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2250_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.250000e+03 # ~g\n 1000022 1.600000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2300_1'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2300_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.300000e+03 # ~g\n 1000022 1.000000e+00 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2300_100'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2300_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.300000e+03 # ~g\n 1000022 1.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2300_200'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2300_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.300000e+03 # ~g\n 1000022 2.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2300_300'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2300_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.300000e+03 # ~g\n 1000022 3.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2300_400'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2300_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.300000e+03 # ~g\n 1000022 4.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2300_500'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2300_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.300000e+03 # ~g\n 1000022 5.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2300_600'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2300_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.300000e+03 # ~g\n 1000022 6.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2300_700'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2300_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.300000e+03 # ~g\n 1000022 7.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2300_800'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2300_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.300000e+03 # ~g\n 1000022 8.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2300_900'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2300_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.300000e+03 # ~g\n 1000022 9.000000e+02 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2300_1000'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2300_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.300000e+03 # ~g\n 1000022 1.000000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2300_1100'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2300_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.300000e+03 # ~g\n 1000022 1.100000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2300_1200'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2300_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.300000e+03 # ~g\n 1000022 1.200000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2300_1300'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2300_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.300000e+03 # ~g\n 1000022 1.300000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2300_1350'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2300_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.300000e+03 # ~g\n 1000022 1.350000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2300_1400'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2300_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.300000e+03 # ~g\n 1000022 1.400000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2300_1450'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2300_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.300000e+03 # ~g\n 1000022 1.450000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2300_1500'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2300_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.300000e+03 # ~g\n 1000022 1.500000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2300_1550'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2300_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.300000e+03 # ~g\n 1000022 1.550000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ), + cms.PSet( + ConfigDescription = cms.string('T1qqqq_2300_1600'), + ConfigWeight = cms.double(7.74603174603), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-2300_tarball.tar.xz'), + PythiaParameters = cms.PSet( + JetMatchingParameters = cms.vstring('JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = 160', + 'JetMatching:nQmatch = 5', + 'JetMatching:nJetMax = 2', + 'JetMatching:doShowerKt = off', + '6:m0 = 172.5', + 'Check:abortIfVeto = on'), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters'), + pythia8CUEP8M1Settings = cms.vstring('Tune:pp 14', + 'Tune:ee 7', + 'MultipartonInteractions:pT0Ref=2.4024', + 'MultipartonInteractions:ecmPow=0.25208', + 'MultipartonInteractions:expPow=1.6'), + pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', + 'Main:timesAllowErrors = 10000', + 'Check:epTolErr = 0.01', + 'Beams:setProductionScalesFromLHEF = off', + 'SLHA:keepSM = on', + 'SLHA:minMassSM = 1000.', + 'ParticleDecays:limitTau0 = on', + 'ParticleDecays:tau0Max = 10', + 'ParticleDecays:allowPhotonRadiation = on') + ), + SLHATableForPythia8 = cms.string('\nBLOCK MASS # Mass Spectrum\n# PDG code mass particle\n 1000001 1.00000000E+05 # ~d_L\n 2000001 1.00000000E+05 # ~d_R\n 1000002 1.00000000E+05 # ~u_L\n 2000002 1.00000000E+05 # ~u_R\n 1000003 1.00000000E+05 # ~s_L\n 2000003 1.00000000E+05 # ~s_R\n 1000004 1.00000000E+05 # ~c_L\n 2000004 1.00000000E+05 # ~c_R\n 1000005 1.00000000E+05 # ~b_1\n 2000005 1.00000000E+05 # ~b_2\n 1000006 1.00000000E+05 # ~t_1\n 2000006 1.00000000E+05 # ~t_2\n 1000011 1.00000000E+05 # ~e_L\n 2000011 1.00000000E+05 # ~e_R\n 1000012 1.00000000E+05 # ~nu_eL\n 1000013 1.00000000E+05 # ~mu_L\n 2000013 1.00000000E+05 # ~mu_R\n 1000014 1.00000000E+05 # ~nu_muL\n 1000015 1.00000000E+05 # ~tau_1\n 2000015 1.00000000E+05 # ~tau_2\n 1000016 1.00000000E+05 # ~nu_tauL\n 1000021 2.300000e+03 # ~g\n 1000022 1.600000e+03 # ~chi_10\n 1000023 1.00000000E+05 # ~chi_20\n 1000025 1.00000000E+05 # ~chi_30\n 1000035 1.00000000E+05 # ~chi_40\n 1000024 1.00000000E+05 # ~chi_1+\n 1000037 1.00000000E+05 # ~chi_2+\n\n# DECAY TABLE\n# PDG Width\nDECAY 1000001 0.00000000E+00 # sdown_L decays\nDECAY 2000001 0.00000000E+00 # sdown_R decays\nDECAY 1000002 0.00000000E+00 # sup_L decays\nDECAY 2000002 0.00000000E+00 # sup_R decays\nDECAY 1000003 0.00000000E+00 # sstrange_L decays\nDECAY 2000003 0.00000000E+00 # sstrange_R decays\nDECAY 1000004 0.00000000E+00 # scharm_L decays\nDECAY 2000004 0.00000000E+00 # scharm_R decays\nDECAY 1000005 0.00000000E+00 # sbottom1 decays\nDECAY 2000005 0.00000000E+00 # sbottom2 decays\nDECAY 1000006 0.00000000E+00 # stop1 decays\nDECAY 2000006 0.00000000E+00 # stop2 decays\n\nDECAY 1000011 0.00000000E+00 # selectron_L decays\nDECAY 2000011 0.00000000E+00 # selectron_R decays\nDECAY 1000012 0.00000000E+00 # snu_elL decays\nDECAY 1000013 0.00000000E+00 # smuon_L decays\nDECAY 2000013 0.00000000E+00 # smuon_R decays\nDECAY 1000014 0.00000000E+00 # snu_muL decays\nDECAY 1000015 0.00000000E+00 # stau_1 decays\nDECAY 2000015 0.00000000E+00 # stau_2 decays\nDECAY 1000016 0.00000000E+00 # snu_tauL decays\n##### gluino decays - no offshell decays needed\nDECAY 1000021 1.00000000E+00 # gluino decays\n# BR NDA ID1 ID2 ID3\n 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u)\n 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d)\n 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c)\n 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s)\n\nDECAY 1000022 0.00000000E+00 # neutralino1 decays\nDECAY 1000023 0.00000000E+00 # neutralino2 decays\nDECAY 1000024 0.00000000E+00 # chargino1+ decays\nDECAY 1000025 0.00000000E+00 # neutralino3 decays\nDECAY 1000035 0.00000000E+00 # neutralino4 decays\nDECAY 1000037 0.00000000E+00 # chargino2+ decays\n') + ) ) ), + comEnergy = cms.double(13000.0), + filterEfficiency = cms.untracked.double(1.0), + maxEventsToPrint = cms.untracked.int32(1), + pythiaHepMCVerbosity = cms.untracked.bool(False), + pythiaPylistVerbosity = cms.untracked.int32(1) +) + + +# Path and EndPath definitions +process.generation_step = cms.Path(process.pgen) +process.simulation_step = cms.Path(process.psim) +process.reconstruction_befmix_step = cms.Path(process.reconstruction_befmix) +process.digitisation_step = cms.Path(process.pdigi) +process.datamixing_step = cms.Path(process.pdatamix) +process.L1simulation_step = cms.Path(process.SimL1Emulator) +process.digi2raw_step = cms.Path(process.DigiToRaw) +process.L1Reco_step = cms.Path(process.L1Reco) +process.reconstruction_step = cms.Path(process.reconstruction) +process.genfiltersummary_step = cms.EndPath(process.genFilterSummary) +process.endjob_step = cms.EndPath(process.endOfProcess) +process.AODSIMoutput_step = cms.EndPath(process.AODSIMoutput) + +# Schedule definition +process.schedule = cms.Schedule(process.generation_step,process.genfiltersummary_step,process.simulation_step,process.reconstruction_befmix_step,process.digitisation_step,process.datamixing_step,process.L1simulation_step,process.digi2raw_step,process.L1Reco_step,process.reconstruction_step) +process.schedule.extend(process.HLTSchedule) +process.schedule.extend([process.endjob_step,process.AODSIMoutput_step]) +# filter all path with the production filter sequence +for path in process.paths: + getattr(process,path)._seq = process.generator * getattr(process,path)._seq + +# customisation of the process. + +# Automatic addition of the customisation function from SimGeneral.DataMixingModule.customiseForPremixingInput +from SimGeneral.DataMixingModule.customiseForPremixingInput import customiseForPreMixingInput + +#call to customisation function customiseForPreMixingInput imported from SimGeneral.DataMixingModule.customiseForPremixingInput +process = customiseForPreMixingInput(process) + +# Automatic addition of the customisation function from Configuration.DataProcessing.Utils +from Configuration.DataProcessing.Utils import addMonitoring + +#call to customisation function addMonitoring imported from Configuration.DataProcessing.Utils +process = addMonitoring(process) + +# Automatic addition of the customisation function from HLTrigger.Configuration.customizeHLTforMC +from HLTrigger.Configuration.customizeHLTforMC import customizeHLTforFastSim + +#call to customisation function customizeHLTforFastSim imported from HLTrigger.Configuration.customizeHLTforMC +process = customizeHLTforFastSim(process) + +# End of customisation functions + +# Customisation from command line +process.source.numberEventsInLuminosityBlock = cms.untracked.uint32(200) + +# Customisation from command line +process.source.numberEventsInLuminosityBlock = cms.untracked.uint32(200) \ No newline at end of file diff --git a/T1qqqq_fastsim/step2_T1qqqq_MINIAODSIM_cfg.py b/T1qqqq_fastsim/step2_T1qqqq_MINIAODSIM_cfg.py new file mode 100644 index 0000000..ed5de03 --- /dev/null +++ b/T1qqqq_fastsim/step2_T1qqqq_MINIAODSIM_cfg.py @@ -0,0 +1,136 @@ +# Auto generated configuration file +# using: +# Revision: 1.19 +# Source: /local/reps/CMSSW/CMSSW/Configuration/Applications/python/ConfigBuilder.py,v +# with command line options: step1 --filein dbs:/SMS-T1qqqq_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/RunIISpring16FSPremix-80X_mcRun2_asymptotic_v12-v2/AODSIM --fileout file:SUS-RunIISpring16MiniAODv2-00193.root --mc --eventcontent MINIAODSIM --runUnscheduled --fast --datatier MINIAODSIM --conditions 80X_mcRun2_asymptotic_2016_miniAODv2_v0 --step PAT --era Run2_25ns --python_filename step2_T1qqqq_MINIAODSIM_cfg.py --no_exec --customise Configuration/DataProcessing/Utils.addMonitoring -n 2880 +import FWCore.ParameterSet.Config as cms + +from Configuration.StandardSequences.Eras import eras + +process = cms.Process('PAT',eras.Run2_25ns,eras.fastSim) + +# import of standard configurations +process.load('Configuration.StandardSequences.Services_cff') +process.load('SimGeneral.HepPDTESSource.pythiapdt_cfi') +process.load('FWCore.MessageService.MessageLogger_cfi') +process.load('Configuration.EventContent.EventContent_cff') +process.load('SimGeneral.MixingModule.mixNoPU_cfi') +process.load('FastSimulation.Configuration.Geometries_MC_cff') +process.load('Configuration.StandardSequences.MagneticField_cff') +process.load('PhysicsTools.PatAlgos.slimming.metFilterPaths_cff') +process.load('Configuration.StandardSequences.EndOfProcess_cff') +process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff') + +process.maxEvents = cms.untracked.PSet( + input = cms.untracked.int32(2880) +) + +# Input source +process.source = cms.Source("PoolSource", + fileNames = cms.untracked.vstring('/store/mc/RunIISpring16FSPremix/SMS-T1qqqq_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/AODSIM/80X_mcRun2_asymptotic_v12-v2/40000/00491177-A52D-E611-A9D9-001EC9B218F3.root', + '/store/mc/RunIISpring16FSPremix/SMS-T1qqqq_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/AODSIM/80X_mcRun2_asymptotic_v12-v2/40000/004F1CBD-762D-E611-A778-C4346BC78E90.root', + '/store/mc/RunIISpring16FSPremix/SMS-T1qqqq_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/AODSIM/80X_mcRun2_asymptotic_v12-v2/40000/006C1FD0-932D-E611-911B-0CC47A4C8EE2.root', + '/store/mc/RunIISpring16FSPremix/SMS-T1qqqq_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/AODSIM/80X_mcRun2_asymptotic_v12-v2/40000/007F710A-AE2D-E611-ACA5-02163E014862.root', + '/store/mc/RunIISpring16FSPremix/SMS-T1qqqq_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/AODSIM/80X_mcRun2_asymptotic_v12-v2/40000/00B31747-A62D-E611-84F1-002590D9D8D4.root', + '/store/mc/RunIISpring16FSPremix/SMS-T1qqqq_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/AODSIM/80X_mcRun2_asymptotic_v12-v2/40000/00DE2953-672D-E611-B63C-0025905D1CB2.root', + '/store/mc/RunIISpring16FSPremix/SMS-T1qqqq_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/AODSIM/80X_mcRun2_asymptotic_v12-v2/40000/0204EB38-EC2E-E611-AEBB-44A842CF05CC.root', + '/store/mc/RunIISpring16FSPremix/SMS-T1qqqq_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/AODSIM/80X_mcRun2_asymptotic_v12-v2/40000/020D0486-8D2D-E611-BB0A-0090FAA57BA0.root', + '/store/mc/RunIISpring16FSPremix/SMS-T1qqqq_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/AODSIM/80X_mcRun2_asymptotic_v12-v2/40000/0273E888-7C2D-E611-886E-0025905D1CAC.root', + '/store/mc/RunIISpring16FSPremix/SMS-T1qqqq_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/AODSIM/80X_mcRun2_asymptotic_v12-v2/40000/02B8D1EB-862D-E611-B497-C45444922BFE.root'), + secondaryFileNames = cms.untracked.vstring() +) + +process.options = cms.untracked.PSet( + allowUnscheduled = cms.untracked.bool(True) +) + +# Production Info +process.configurationMetadata = cms.untracked.PSet( + annotation = cms.untracked.string('step1 nevts:2880'), + name = cms.untracked.string('Applications'), + version = cms.untracked.string('$Revision: 1.19 $') +) + +# Output definition + +process.MINIAODSIMoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('MINIAODSIM'), + filterName = cms.untracked.string('') + ), + dropMetaData = cms.untracked.string('ALL'), + eventAutoFlushCompressedSize = cms.untracked.int32(15728640), + fastCloning = cms.untracked.bool(False), + fileName = cms.untracked.string('file:SUS-RunIISpring16MiniAODv2-00193.root'), + outputCommands = process.MINIAODSIMEventContent.outputCommands, + overrideInputFileSplitLevels = cms.untracked.bool(True) +) + +# Additional output definition + +# Other statements +from Configuration.AlCa.GlobalTag import GlobalTag +process.GlobalTag = GlobalTag(process.GlobalTag, '80X_mcRun2_asymptotic_2016_miniAODv2_v0', '') + +# Path and EndPath definitions +process.Flag_trackingFailureFilter = cms.Path(process.goodVertices+process.trackingFailureFilter) +process.Flag_goodVertices = cms.Path(process.primaryVertexFilter) +process.Flag_CSCTightHaloFilter = cms.Path(process.CSCTightHaloFilter) +process.Flag_trkPOGFilters = cms.Path(process.trkPOGFilters) +process.Flag_trkPOG_logErrorTooManyClusters = cms.Path(~process.logErrorTooManyClusters) +process.Flag_EcalDeadCellTriggerPrimitiveFilter = cms.Path(process.EcalDeadCellTriggerPrimitiveFilter) +process.Flag_ecalLaserCorrFilter = cms.Path(process.ecalLaserCorrFilter) +process.Flag_globalSuperTightHalo2016Filter = cms.Path(process.globalSuperTightHalo2016Filter) +process.Flag_eeBadScFilter = cms.Path(process.eeBadScFilter) +process.Flag_METFilters = cms.Path(process.metFilters) +process.Flag_chargedHadronTrackResolutionFilter = cms.Path(process.chargedHadronTrackResolutionFilter) +process.Flag_globalTightHalo2016Filter = cms.Path(process.globalTightHalo2016Filter) +process.Flag_CSCTightHaloTrkMuUnvetoFilter = cms.Path(process.CSCTightHaloTrkMuUnvetoFilter) +process.Flag_HBHENoiseIsoFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseIsoFilter) +process.Flag_hcalLaserEventFilter = cms.Path(process.hcalLaserEventFilter) +process.Flag_HBHENoiseFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseFilter) +process.Flag_trkPOG_toomanystripclus53X = cms.Path(~process.toomanystripclus53X) +process.Flag_EcalDeadCellBoundaryEnergyFilter = cms.Path(process.EcalDeadCellBoundaryEnergyFilter) +process.Flag_trkPOG_manystripclus53X = cms.Path(~process.manystripclus53X) +process.Flag_HcalStripHaloFilter = cms.Path(process.HcalStripHaloFilter) +process.Flag_muonBadTrackFilter = cms.Path(process.muonBadTrackFilter) +process.Flag_CSCTightHalo2015Filter = cms.Path(process.CSCTightHalo2015Filter) +process.endjob_step = cms.EndPath(process.endOfProcess) +process.MINIAODSIMoutput_step = cms.EndPath(process.MINIAODSIMoutput) + +# Schedule definition +process.schedule = cms.Schedule(process.Flag_HBHENoiseFilter,process.Flag_HBHENoiseIsoFilter,process.Flag_CSCTightHaloFilter,process.Flag_CSCTightHaloTrkMuUnvetoFilter,process.Flag_CSCTightHalo2015Filter,process.Flag_globalTightHalo2016Filter,process.Flag_globalSuperTightHalo2016Filter,process.Flag_HcalStripHaloFilter,process.Flag_hcalLaserEventFilter,process.Flag_EcalDeadCellTriggerPrimitiveFilter,process.Flag_EcalDeadCellBoundaryEnergyFilter,process.Flag_goodVertices,process.Flag_eeBadScFilter,process.Flag_ecalLaserCorrFilter,process.Flag_trkPOGFilters,process.Flag_chargedHadronTrackResolutionFilter,process.Flag_muonBadTrackFilter,process.Flag_trkPOG_manystripclus53X,process.Flag_trkPOG_toomanystripclus53X,process.Flag_trkPOG_logErrorTooManyClusters,process.Flag_METFilters,process.endjob_step,process.MINIAODSIMoutput_step) + +# customisation of the process. + +# Automatic addition of the customisation function from Configuration.DataProcessing.Utils +from Configuration.DataProcessing.Utils import addMonitoring + +#call to customisation function addMonitoring imported from Configuration.DataProcessing.Utils +process = addMonitoring(process) + +# End of customisation functions +#do not add changes to your config after this point (unless you know what you are doing) +from FWCore.ParameterSet.Utilities import convertToUnscheduled +process=convertToUnscheduled(process) +process.load('Configuration.StandardSequences.PATMC_cff') +from FWCore.ParameterSet.Utilities import cleanUnscheduled +process=cleanUnscheduled(process) + +# customisation of the process. + +# Automatic addition of the customisation function from PhysicsTools.PatAlgos.slimming.miniAOD_tools +from PhysicsTools.PatAlgos.slimming.miniAOD_tools import miniAOD_customizeAllMC + +#call to customisation function miniAOD_customizeAllMC imported from PhysicsTools.PatAlgos.slimming.miniAOD_tools +process = miniAOD_customizeAllMC(process) + +# Automatic addition of the customisation function from PhysicsTools.PatAlgos.slimming.metFilterPaths_cff +from PhysicsTools.PatAlgos.slimming.metFilterPaths_cff import miniAOD_customizeMETFiltersFastSim + +#call to customisation function miniAOD_customizeMETFiltersFastSim imported from PhysicsTools.PatAlgos.slimming.metFilterPaths_cff +process = miniAOD_customizeMETFiltersFastSim(process) + +# End of customisation functions diff --git a/T1qqqq_fullsim/README.md b/T1qqqq_fullsim/README.md new file mode 100644 index 0000000..f9797a0 --- /dev/null +++ b/T1qqqq_fullsim/README.md @@ -0,0 +1,83 @@ +# T1qqqq full sim production + +## Setup CMSSW + +Checkout CMSSW version `8_0_21`: +```bash +export SCRAM_ARCH=slc6_amd64_gcc530 +cmsrel CMSSW_8_0_21 +cd CMSSW_8_0_21/src +cmsenv +mkdir -p Configuration/GenProduction/python/ +cp ../../fragments/T1qqqq_fragment.py Configuration/GenProduction/python/ +scram b -j 9 +cd - +``` + +### GEN-SIM +Runs Madgraph and Pythia +```bash +cmsDriver.py Configuration/GenProduction/python/T1qqqq_fragment.py \ + --mc \ + --eventcontent RAWSIM \ + --customise_commands "process.source.numberEventsInLuminosityBlock = cms.untracked.uint32(50) \n process.source.firstRun = cms.untracked.uint32(3) \n process.generator.initialSeed = cms.untracked.uint32(3)" \ + --datatier GEN-SIM \ + --conditions 80X_mcRun2_asymptotic_2016_TrancheIV_v6 \ + --beamspot Realistic50ns13TeVCollision \ + --step GEN,SIM \ + --magField 38T_PostLS1 \ + --fileout file:T1qqqq_fullsim_GEN-SIM.root \ + --python_filename step1_T1qqqq_fullsim_GEN-SIM_cfg.py \ + --no_exec \ + -n 50 +``` + +### PU Mixing +Run the PU mixing step over all events produced by the GEN-SIM step +```bash +cmsDriver.py --mc \ + --eventcontent PREMIXRAW \ + --datatier GEN-SIM-RAW \ + --conditions 80X_mcRun2_asymptotic_2016_TrancheIV_v6 \ + --step DIGIPREMIX_S2,DATAMIX,L1,DIGI2RAW,HLT:@frozen2016 \ + --datamix PreMix \ + --era Run2_2016 \ + --filein file:T1qqqq_fullsim_GEN-SIM.root \ + --fileout file:T1qqqq_fullsim_PUMix.root \ + --python_filename step2_T1qqqq_fullsim_PUMix_cfg.py \ + --pileup_input "/store/mc/RunIISpring15PrePremix/Neutrino_E-10_gun/GEN-SIM-DIGI-RAW/PUMoriond17_80X_mcRun2_asymptotic_2016_TrancheIV_v2-v2/90023/FED016AB-6A85-E611-96E7-002590A80DF0.root" \ + --no_exec \ + -n -1 +``` + +### AODSIM +```bash +cmsDriver.py --mc \ + --eventcontent AODSIM,DQM \ + --runUnscheduled \ + --datatier AODSIM,DQMIO \ + --conditions 80X_mcRun2_asymptotic_2016_TrancheIV_v6 \ + --step RAW2DIGI,RECO,EI,DQM:DQMOfflinePOGMC \ + --era Run2_2016 \ + --filein file:T1qqqq_fullsim_PUMix.root \ + --fileout file:T1qqqq_fullsim_AODSIM.root \ + --python_filename step3_T1qqqq_fullsim_AODSIM_cfg.py \ + --no_exec \ + -n -1 +``` + +### MINIAODSIM +```bash +cmsDriver.py --mc \ + --eventcontent MINIAODSIM \ + --runUnscheduled \ + --datatier MINIAODSIM \ + --conditions 80X_mcRun2_asymptotic_2016_TrancheIV_v6 \ + --step PAT \ + --era Run2_2016 \ + --filein file:T1qqqq_fullsim_AODSIM.root \ + --fileout file:T1qqqq_fullsim_MINIAODSIM.root \ + --python_filename step4_T1qqqq_fullsim_MINIAODSIM_cfg.py \ + --no_exec \ + -n -1 +``` diff --git a/T1qqqq_fullsim/crab_submission_AODSIM.py b/T1qqqq_fullsim/crab_submission_AODSIM.py new file mode 100644 index 0000000..c7d8382 --- /dev/null +++ b/T1qqqq_fullsim/crab_submission_AODSIM.py @@ -0,0 +1,23 @@ +from CRABClient.UserUtilities import config, getUsernameFromSiteDB +config = config() + +config.General.requestName = 'SMS_T1qqqq_fullsim' +config.General.workArea = 'SMS_T1qqqq_fullsim_AODSIM' +config.General.transferOutputs = True +config.General.transferLogs = True + +config.JobType.pluginName = 'ANALYSIS' +config.JobType.psetName = 'step3_T1qqqq_fullsim_AODSIM_cfg.py' +config.JobType.outputFiles = ['T1qqqq_fullsim_AODSIM.root',] + +config.Data.inputDataset = '' +config.Data.inputDBS = 'phys03' +config.Data.splitting = 'EventAwareLumiBased' +config.Data.unitsPerJob = 100 +config.Data.totalUnits = -1 +config.Data.outLFNDirBase = '/store/user/%s/' % (getUsernameFromSiteDB()) +config.Data.publication = True +config.Data.outputDatasetTag = 'T1qqqq_fullsim_Madgraph_Pythia_AODSIM' + +config.Site.storageSite = 'T2_UK_London_IC' +#config.Site.storageSite = 'T2_UK_SGrid_Bristol' diff --git a/T1qqqq_fullsim/crab_submission_GEN-SIM.py b/T1qqqq_fullsim/crab_submission_GEN-SIM.py new file mode 100644 index 0000000..10858cd --- /dev/null +++ b/T1qqqq_fullsim/crab_submission_GEN-SIM.py @@ -0,0 +1,22 @@ +from CRABClient.UserUtilities import config, getUsernameFromSiteDB +config = config() + +config.General.requestName = 'SMS_T1qqqq_fullsim' +config.General.workArea = 'SMS_T1qqqq_fullsim_GEN-SIM' +config.General.transferOutputs = True +config.General.transferLogs = True + +config.JobType.pluginName = 'PrivateMC' +config.JobType.psetName = 'step1_T1qqqq_fullsim_GEN-SIM_cfg.py' + +config.Data.outputPrimaryDataset = 'T1qqqq_fullsim_Madgraph_Pythia' +config.Data.inputDBS = 'global' +config.Data.splitting = 'EventBased' +config.Data.unitsPerJob = 500 +config.Data.totalUnits = 100000 +config.Data.outLFNDirBase = '/store/user/%s/' % (getUsernameFromSiteDB()) +config.Data.publication = True +config.Data.outputDatasetTag = 'T1qqqq_fullsim_Madgraph_Pythia_GEN-SIM' + +config.Site.storageSite = 'T2_UK_London_IC' +#config.Site.storageSite = 'T2_UK_SGrid_Bristol' diff --git a/T1qqqq_fullsim/crab_submission_MINIAODSIM.py b/T1qqqq_fullsim/crab_submission_MINIAODSIM.py new file mode 100644 index 0000000..23b34bc --- /dev/null +++ b/T1qqqq_fullsim/crab_submission_MINIAODSIM.py @@ -0,0 +1,23 @@ +from CRABClient.UserUtilities import config, getUsernameFromSiteDB +config = config() + +config.General.requestName = 'SMS_T1qqqq_fullsim' +config.General.workArea = 'SMS_T1qqqq_fullsim_MINIAODSIM' +config.General.transferOutputs = True +config.General.transferLogs = True + +config.JobType.pluginName = 'ANALYSIS' +config.JobType.psetName = 'step4_T1qqqq_fullsim_MINIAODSIM_cfg.py' +config.JobType.outputFiles = ['T1qqqq_fullsim_MINIAODSIM.root'] + +config.Data.inputDataset = '' +config.Data.inputDBS = 'phys03' +config.Data.splitting = 'EventAwareLumiBased' +config.Data.unitsPerJob = 100 +config.Data.totalUnits = -1 +config.Data.outLFNDirBase = '/store/user/%s/' % (getUsernameFromSiteDB()) +config.Data.publication = True +config.Data.outputDatasetTag = 'T1qqqq_fullsim_Madgraph_Pythia_MINIAODSIM' + +config.Site.storageSite = 'T2_UK_London_IC' +#config.Site.storageSite = 'T2_UK_SGrid_Bristol' diff --git a/T1qqqq_fullsim/crab_submission_PUMix.py b/T1qqqq_fullsim/crab_submission_PUMix.py new file mode 100644 index 0000000..bc80898 --- /dev/null +++ b/T1qqqq_fullsim/crab_submission_PUMix.py @@ -0,0 +1,23 @@ +from CRABClient.UserUtilities import config, getUsernameFromSiteDB +config = config() + +config.General.requestName = 'SMS_T1qqqq_fullsim' +config.General.workArea = 'SMS_T1qqqq_fullsim_PUMix' +config.General.transferOutputs = True +config.General.transferLogs = True + +config.JobType.pluginName = 'ANALYSIS' +config.JobType.psetName = 'step2_T1qqqq_fullsim_PUMix_cfg.py' +config.JobType.outputFiles = ['T1qqqq_fullsim_PUMix.root',] + +config.Data.inputDataset = '' +config.Data.inputDBS = 'phys03' +config.Data.splitting = 'EventAwareLumiBased' +config.Data.unitsPerJob = 100 +config.Data.totalUnits = -1 +config.Data.outLFNDirBase = '/store/user/%s/' % (getUsernameFromSiteDB()) +config.Data.publication = True +config.Data.outputDatasetTag = 'T1qqqq_fullsim_Madgraph_Pythia_PUMix' + +config.Site.storageSite = 'T2_UK_London_IC' +#config.Site.storageSite = 'T2_UK_SGrid_Bristol' diff --git a/T1qqqq_fullsim/fragments/T1qqqq_fragment.py b/T1qqqq_fullsim/fragments/T1qqqq_fragment.py new file mode 100644 index 0000000..47495cc --- /dev/null +++ b/T1qqqq_fullsim/fragments/T1qqqq_fragment.py @@ -0,0 +1,223 @@ +import FWCore.ParameterSet.Config as cms + +from Configuration.Generator.Pythia8CommonSettings_cfi import * +from Configuration.Generator.Pythia8CUEP8M1Settings_cfi import * + +import math + +baseSLHATable=""" +BLOCK MASS # Mass Spectrum +# PDG code mass particle + 1000001 1.00000000E+05 # ~d_L + 2000001 1.00000000E+05 # ~d_R + 1000002 1.00000000E+05 # ~u_L + 2000002 1.00000000E+05 # ~u_R + 1000003 1.00000000E+05 # ~s_L + 2000003 1.00000000E+05 # ~s_R + 1000004 1.00000000E+05 # ~c_L + 2000004 1.00000000E+05 # ~c_R + 1000005 1.00000000E+05 # ~b_1 + 2000005 1.00000000E+05 # ~b_2 + 1000006 1.00000000E+05 # ~t_1 + 2000006 1.00000000E+05 # ~t_2 + 1000011 1.00000000E+05 # ~e_L + 2000011 1.00000000E+05 # ~e_R + 1000012 1.00000000E+05 # ~nu_eL + 1000013 1.00000000E+05 # ~mu_L + 2000013 1.00000000E+05 # ~mu_R + 1000014 1.00000000E+05 # ~nu_muL + 1000015 1.00000000E+05 # ~tau_1 + 2000015 1.00000000E+05 # ~tau_2 + 1000016 1.00000000E+05 # ~nu_tauL + 1000021 %MGLU% # ~g + 1000022 %MLSP% # ~chi_10 + 1000023 1.00000000E+05 # ~chi_20 + 1000025 1.00000000E+05 # ~chi_30 + 1000035 1.00000000E+05 # ~chi_40 + 1000024 1.00000000E+05 # ~chi_1+ + 1000037 1.00000000E+05 # ~chi_2+ + +# DECAY TABLE +# PDG Width +DECAY 1000001 0.00000000E+00 # sdown_L decays +DECAY 2000001 0.00000000E+00 # sdown_R decays +DECAY 1000002 0.00000000E+00 # sup_L decays +DECAY 2000002 0.00000000E+00 # sup_R decays +DECAY 1000003 0.00000000E+00 # sstrange_L decays +DECAY 2000003 0.00000000E+00 # sstrange_R decays +DECAY 1000004 0.00000000E+00 # scharm_L decays +DECAY 2000004 0.00000000E+00 # scharm_R decays +DECAY 1000005 0.00000000E+00 # sbottom1 decays +DECAY 2000005 0.00000000E+00 # sbottom2 decays +DECAY 1000006 0.00000000E+00 # stop1 decays +DECAY 2000006 0.00000000E+00 # stop2 decays + +DECAY 1000011 0.00000000E+00 # selectron_L decays +DECAY 2000011 0.00000000E+00 # selectron_R decays +DECAY 1000012 0.00000000E+00 # snu_elL decays +DECAY 1000013 0.00000000E+00 # smuon_L decays +DECAY 2000013 0.00000000E+00 # smuon_R decays +DECAY 1000014 0.00000000E+00 # snu_muL decays +DECAY 1000015 0.00000000E+00 # stau_1 decays +DECAY 2000015 0.00000000E+00 # stau_2 decays +DECAY 1000016 0.00000000E+00 # snu_tauL decays +##### gluino decays - no offshell decays needed +DECAY 1000021 1.00000000E+00 # gluino decays +# BR NDA ID1 ID2 ID3 + 2.50000000E-01 3 1000022 -1 1 # BR(~gl -> N1 ubar u) + 2.50000000E-01 3 1000022 -2 2 # BR(~gl -> N1 dbar d) + 2.50000000E-01 3 1000022 -3 3 # BR(~gl -> N1 cbar c) + 2.50000000E-01 3 1000022 -4 4 # BR(~gl -> N1 sbar s) + +DECAY 1000022 0.00000000E+00 # neutralino1 decays +DECAY 1000023 0.00000000E+00 # neutralino2 decays +DECAY 1000024 0.00000000E+00 # chargino1+ decays +DECAY 1000025 0.00000000E+00 # neutralino3 decays +DECAY 1000035 0.00000000E+00 # neutralino4 decays +DECAY 1000037 0.00000000E+00 # chargino2+ decays +""" + +generator = cms.EDFilter("Pythia8GeneratorFilter", + 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.), + RandomizedParameters = cms.VPSet(), +) + +model = "T1qqqq" +# weighted average of matching efficiencies for the full scan +# must equal the number entered in McM generator params +mcm_eff = 0.244 + + +# Parameters that define the grid in the bulk and diagonal +class gridBlock: + def __init__(self, xmin, xmax, xstep, ystep): + self.xmin = xmin + self.xmax = xmax + self.xstep = xstep + self.ystep = ystep + +# Fit to gluino cross-section in fb +def xsec(mass): + return 4.563e+17*math.pow(mass, -4.761*math.exp(5.848e-05*mass)) + +def matchParams(mass): + if mass<799: return 118., 0.235 + elif mass<999: return 128., 0.235 + elif mass<1199: return 140., 0.235 + elif mass<1399: return 143., 0.245 + elif mass<1499: return 147., 0.255 + elif mass<1799: return 150., 0.267 + elif mass<2099: return 156., 0.290 + else: return 160., 0.315 + +# Number of events: min(goalLumi*xsec, maxEvents) (always in thousands) +goalLumi = 800 +minLumi = 40 +minEvents, maxEvents = 10, 150 +diagStep = 50 +maxDM = 1000 + + +scanBlocks = [] +scanBlocks.append(gridBlock(600, 650, 100, 100)) +#scanBlocks.append(gridBlock(1200, 2301, 50, 100)) +minDM = 25 +ymin, ymed, ymax = 0, 50, 100 + + +# Number of events for mass point, in thousands +def events(mass): + xs = xsec(mass) + nev = min(goalLumi*xs, maxEvents*1000) + if nev < xs*minLumi: nev = xs*minLumi + nev = max(nev/1000, minEvents) + return math.ceil(nev) # Rounds up + +# Constructing grid + +print "Starting grid construction" + +cols = [] +Nevents = [] +xmin, xmax = 9999, 0 +for block in scanBlocks: + Nbulk, Ndiag = 0, 0 + for mx in range(block.xmin, block.xmax, diagStep): + xmin = min(xmin, block.xmin) + xmax = max(xmax, block.xmax) + col = [] + my = 0 + begDiag = max(ymed, mx-maxDM) + # Adding bulk points + if (mx-block.xmin)%block.xstep == 0 : + for my in range(ymin, begDiag, block.ystep): + if my > ymax: continue + nev = events(mx) + col.append([mx,my, nev]) + Nbulk += nev + # Adding diagonal points + for my in range(begDiag, mx-minDM+1, diagStep): + if my > ymax: continue + nev = events(mx) + col.append([mx,my, nev]) + Ndiag += nev + if(my != mx-minDM and mx-minDM <= ymax): + my = mx-minDM + nev = events(mx) + col.append([mx,my, nev]) + Ndiag += nev + cols.append(col) + Nevents.append([Nbulk, Ndiag]) + +mpoints = [] + +for col in cols: mpoints.extend(col) + +print "Finished grid construction" + +for point in mpoints: + mglu, mlsp = point[0], point[1] + qcut, tru_eff = matchParams(mglu) + wgt = point[2]*(mcm_eff/tru_eff) + + if mlsp==0: mlsp = 1 + slhatable = baseSLHATable.replace('%MGLU%','%e' % mglu) + slhatable = slhatable.replace('%MLSP%','%e' % mlsp) + + basePythiaParameters = cms.PSet( + pythia8CommonSettingsBlock, + pythia8CUEP8M1SettingsBlock, + JetMatchingParameters = cms.vstring( + 'JetMatching:setMad = off', + 'JetMatching:scheme = 1', + 'JetMatching:merge = on', + 'JetMatching:jetAlgorithm = 2', + 'JetMatching:etaJetMax = 5.', + 'JetMatching:coneRadius = 1.', + 'JetMatching:slowJetPower = 1', + 'JetMatching:qCut = %.0f' % qcut, #this is the actual merging scale + 'JetMatching:nQmatch = 5', #4 corresponds to 4-flavour scheme (no matching of b-quarks), 5 for 5-flavour scheme + 'JetMatching:nJetMax = 2', #number of partons in born matrix element for highest multiplicity + 'JetMatching:doShowerKt = off', #off for MLM matching, turn on for shower-kT matching + '6:m0 = 172.5', + 'Check:abortIfVeto = on', + ), + parameterSets = cms.vstring('pythia8CommonSettings', + 'pythia8CUEP8M1Settings', + 'JetMatchingParameters' + ) + ) + + generator.RandomizedParameters.append( + cms.PSet( + ConfigWeight = cms.double(wgt), + GridpackPath = cms.string('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc481/13TeV/madgraph/V5_2.3.3/sus_sms/SMS-GlGl/SMS-GlGl_mGl-%i_tarball.tar.xz' % mglu), + ConfigDescription = cms.string('%s_%i_%i' % (model, mglu, mlsp)), + SLHATableForPythia8 = cms.string('%s' % slhatable), + PythiaParameters = basePythiaParameters, + ), + )