Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 ###########################################
0002 # Example config file for AlpgenInterface #
0003 ###########################################
0004 
0005 import FWCore.ParameterSet.Config as cms
0006 
0007 process = cms.Process("TEST")
0008 
0009 ##########################
0010 # Basic process controls #
0011 ##########################
0012 
0013 process.maxEvents = cms.untracked.PSet(
0014     input = cms.untracked.int32(1)
0015     )
0016 
0017 process.load("FWCore.MessageService.MessageLogger_cfi")
0018 
0019 ##########
0020 # Source #
0021 ##########
0022 
0023 process.source = cms.Source("PoolSource",
0024                             fileNames = cms.untracked.vstring('file:test.root')
0025                             )
0026 
0027 process.analyzer = cms.EDAnalyzer("AlpgenExtractor",
0028                                   unwParFile = cms.untracked.string('NEW_unw.par'),
0029                                   wgtFile = cms.untracked.string('NEW.wgt'),
0030                                   parFile = cms.untracked.string('NEW.par')
0031                                   )
0032 
0033 process.p = cms.Path(process.analyzer)