Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 l1GtPackUnpackAnalyzer = cms.EDAnalyzer("L1GtPackUnpackAnalyzer",
0004     
0005     # input tag for the initial GT DAQ record: 
0006     #     GT emulator:  gtDigis  
0007     #     GT unpacker:  l1GtUnpack  
0008     InitialDaqGtInputTag = cms.InputTag("gtDigis"),
0009 
0010     # input tag for the initial GMT readout collection: 
0011     #     gmtDigis       = GMT emulator, 
0012     #     l1GtUnpack     = GT unpacker 
0013     InitialMuGmtInputTag = cms.InputTag("gmtDigis"),
0014 
0015     # input tag for the final GT DAQ and GMT records: 
0016     #     GT unpacker:  gtPackedUnpack (cloned unpacker from L1GtPackUnpackAnalyzer.cfg)
0017     FinalGtGmtInputTag = cms.InputTag("gtPackedUnpack")
0018     
0019 )
0020 
0021