Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 # Configuration file for testing vector of built-in type
0002 
0003 import FWCore.ParameterSet.Config as cms
0004 
0005 process = cms.Process("TEST")
0006 
0007 process.load("FWCore.Framework.test.cmsExceptionsFatal_cff")
0008 
0009 process.maxEvents = cms.untracked.PSet(
0010     input = cms.untracked.int32(2)
0011 )
0012 
0013 process.source = cms.Source("EmptySource")
0014 
0015 process.VIP = cms.EDProducer("IntVectorProducer",
0016     ivalue = cms.int32(42),
0017     count = cms.int32(1)
0018 )
0019 
0020 process.out = cms.OutputModule("PoolOutputModule",
0021     fileName = cms.untracked.string('vectorinttest.root')
0022 )
0023 
0024 process.p = cms.Path(process.VIP)
0025 process.outp = cms.EndPath(process.out)