import FWCore.ParameterSet.Config as cms externalLHEProducer = cms.EDProducer("ExternalLHEProducer", args = cms.vstring('/cvmfs/cms.cern.ch/phys_generator/gridpacks/UL/13TeV/jhugen/V751/JJHiggs0PMDec0MZyToZZ_M125_13TeV_JHUGenV751_pythia8_slc7_amd64_gcc820_CMSSW_10_6_0/v1/JJHiggs0PMDec0MZyToZZ_M125_13TeV_JHUGenV751_pythia8_slc7_amd64_gcc820_CMSSW_10_6_0.tgz'), nEvents = cms.untracked.uint32(5000), numberOfParameters = cms.uint32(1), outputFile = cms.string('cmsgrid_final.lhe'), generateConcurrently = cms.untracked.bool(True), postGenerationCommand = cms.untracked.vstring('mergeLHE.py', '-i', 'thread*/cmsgrid_final.lhe', '-o', 'cmsgrid_final.lhe'), scriptName = cms.FileInPath('GeneratorInterface/LHEInterface/data/run_generic_tarball_cvmfs.sh') ) # Link to cards: # https://raw.githubusercontent.com/cms-sw/genproductions/ed512ae283cc2d8710e72ecf37c2ae6cd663aee6/bin/JHUGen/cards/pre2017/anomalouscouplings/HJJ_NNPDF30_13TeV/SM.input # https://raw.githubusercontent.com/cms-sw/genproductions/ed512ae283cc2d8710e72ecf37c2ae6cd663aee6/bin/JHUGen/cards/decay/ZZ4l_withtaus.input import FWCore.ParameterSet.Config as cms from Configuration.Generator.Pythia8CommonSettings_cfi import * from Configuration.Generator.MCTunes2017.PythiaCP5Settings_cfi import * from Configuration.Generator.PSweightsPythia.PythiaPSweightsSettings_cfi import * generator = cms.EDFilter("Pythia8ConcurrentHadronizerFilter", maxEventsToPrint = cms.untracked.int32(1), pythiaPylistVerbosity = cms.untracked.int32(1), filterEfficiency = cms.untracked.double(1.0), pythiaHepMCVerbosity = cms.untracked.bool(False), comEnergy = cms.double(13000.), PythiaParameters = cms.PSet( pythia8CommonSettingsBlock, pythia8CP5SettingsBlock, pythia8PSweightsSettingsBlock, processParameters = cms.vstring( 'SpaceShower:pTmaxMatch = 1', 'TimeShower:pTmaxMatch = 1', 'SpaceShower:pTmaxFudge = .5', 'TimeShower:pTmaxFudge = .5', ), parameterSets = cms.vstring('pythia8CommonSettings', 'pythia8CP5Settings', 'pythia8PSweightsSettings', 'processParameters', ) ) ) # Link to generator fragment: # https://raw.githubusercontent.com/cms-sw/genproductions/ed512ae283cc2d8710e72ecf37c2ae6cd663aee6/python/ThirteenTeV/Hadronizer/Hadronizer_TuneCUETP8M1_13TeV_pTmaxMatch_1_pTmaxFudge_half_LHE_pythia8_cff.py