Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 # The following comments couldn't be translated into the new config version:
0002 
0003 # Configuration file for PrePoolInputTest 
0004 
0005 import FWCore.ParameterSet.Config as cms
0006 
0007 process = cms.Process("TESTPROD")
0008 process.load("FWCore.Framework.test.cmsExceptionsFatal_cff")
0009 
0010 process.maxEvents = cms.untracked.PSet(
0011     input = cms.untracked.int32(11)
0012 )
0013 process.Thing = cms.EDProducer("ThingProducer")
0014 
0015 process.output = cms.OutputModule("PoolOutputModule",
0016     outputCommands = cms.untracked.vstring("keep *", "drop *_Thing_*_TESTPROD"),
0017     fileName = cms.untracked.string('aliastest_step1_diffOrder.root')
0018 )
0019 
0020 process.source = cms.Source("EmptySource",
0021     firstLuminosityBlock = cms.untracked.uint32(6),
0022     numberEventsInLuminosityBlock = cms.untracked.uint32(3),
0023     firstRun = cms.untracked.uint32(561),
0024     numberEventsInRun = cms.untracked.uint32(7)
0025 )
0026 
0027 process.OtherThing = cms.EDProducer("OtherThingProducer",
0028     thingTag = cms.InputTag("ZThing")
0029     )
0030 
0031 #This changes the order of the original and alias branch names and branchIDs
0032 process.ZThing = cms.EDAlias(
0033     Thing = cms.VPSet(
0034       cms.PSet(type = cms.string('edmtestThings'),
0035                fromProductInstance = cms.string('*'),
0036                toProductInstance = cms.string('*'))
0037     )
0038 )
0039 
0040 
0041 process.p = cms.Path(process.Thing*process.OtherThing)
0042 process.ep = cms.EndPath(process.output)
0043