Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 11:58:31

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 from CalibMuon.RPCCalibration.l1RPC_EventContent_cff import *
0004 L1RPCEventContent = cms.OutputModule("PoolOutputModule",
0005     l1RPCEventSelection,
0006     l1RPC_EventContent,
0007     datasets = cms.untracked.PSet(
0008         filterName = cms.untracked.string('l1RPC_Filter'),
0009         dataTier = cms.untracked.string('USER')
0010     ),
0011     fileName = cms.untracked.string('l1RPC.root')
0012 )
0013 
0014