Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:13:51

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 process = cms.Process("dumpLHEAscii")
0004 process.load("FWCore.MessageLogger.MessageLogger_cfi")
0005 
0006 process.maxEvents = cms.untracked.PSet(
0007     input = cms.untracked.int32(-1)
0008 )
0009 process.source = cms.Source("PoolSource",
0010     fileNames = cms.untracked.vstring('file:lheOutputFile.root'),
0011     processingMode = cms.untracked.string('Runs'),
0012 )
0013 
0014 process.load("GeneratorInterface/LHEInterface/ExternalLHEAsciiDumper_cfi")
0015 
0016 process.p = cms.Path(process.externalLHEAsciiDumper)
0017 
0018