CMS 3D CMS Logo

ExternalLHEProducer_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 externalLHEProducer = cms.EDProducer('ExternalLHEProducer',
4  scriptName = cms.FileInPath("GeneratorInterface/LHEInterface/data/run_madgraph_gridpack.sh"),
5  outputFile = cms.string("W1Jet_7TeV_madgraph_final.lhe"),
6  numberOfParameters = cms.uint32(10),
7  args = cms.vstring('slc5_ia32_gcc434/madgraph/V5_1.3.27/test','W1Jet_7TeV_madgraph','false','true','wjets','5','20','false','0','99'),
8  nEvents = cms.untracked.uint32(100),
9  storeXML = cms.untracked.bool(False)
10 )
11