Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:03:37

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 # link to cards:
0004 # https://github.com/cms-sw/genproductions/blob/060e6d3363a78ecfae90f7f5c46c968992820a56/bin/Powheg/production/V2/13TeV/Higgs/VBF_H_JHUGen_HZZ4L_NNPDF30_13TeV/VBF_H_M125_NNPDF30_13TeV.input
0005 # https://github.com/cms-sw/genproductions/blob/060e6d3363a78ecfae90f7f5c46c968992820a56/bin/Powheg/production/V2/13TeV/Higgs/VBF_H_JHUGen_HZZ4L_NNPDF30_13TeV/JHUGen_VBF_H_ZZ4L.input
0006 
0007 externalLHEProducer = cms.EDProducer("ExternalLHEProducer",
0008     args = cms.vstring('/cvmfs/cms.cern.ch/phys_generator/gridpacks/slc6_amd64_gcc630/13TeV/Powheg/V2/RelValidation/VBFH/VBF_H_slc6_amd64_gcc630_CMSSW_9_3_9_patch1_VBF_new_reducedPdf.tgz'),
0009     nEvents = cms.untracked.uint32(1000),
0010     numberOfParameters = cms.uint32(1),
0011     outputFile = cms.string('cmsgrid_final.lhe'),
0012     scriptName = cms.FileInPath('GeneratorInterface/LHEInterface/data/run_generic_tarball_cvmfs.sh'),
0013     generateConcurrently = cms.untracked.bool(True),
0014 )