Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-06-22 02:23:22

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 process = cms.Process("PROD")
0004 
0005 process.load("FWCore.MessageService.MessageLogger_cfi")
0006 
0007 process.source = cms.Source("EmptySource")
0008 process.maxEvents.input = 1
0009 
0010 process.l1ScoutingTestProducer = cms.EDProducer("TestWriteL1Scouting",
0011   bxValues = cms.vuint32(42, 512),
0012   muonValues = cms.vint32(1, 2, 3),
0013   jetValues = cms.vint32(4, 5, 6, 7),
0014   eGammaValues = cms.vint32(8, 9, 10),
0015   tauValues = cms.vint32(11, 12),
0016   bxSumsValues = cms.vint32(13),
0017   bmtfStubValues = cms.vint32(1, 2),
0018 )
0019 
0020 process.out = cms.OutputModule("PoolOutputModule",
0021     fileName = cms.untracked.string('testL1Scouting.root')
0022 )
0023 
0024 process.path = cms.Path(process.l1ScoutingTestProducer)
0025 process.endPath = cms.EndPath(process.out)