00001 import FWCore.ParameterSet.Config as cms 00002 00003 L1GtPackUnpackAnalyzer = cms.EDAnalyzer("L1GtPackUnpackAnalyzer", 00004 00005 # input tag for the initial GT DAQ record: 00006 # GT emulator: gtDigis 00007 # GT unpacker: l1GtUnpack 00008 InitialDaqGtInputTag = cms.InputTag("gtDigis"), 00009 00010 # input tag for the initial GMT readout collection: 00011 # gmtDigis = GMT emulator, 00012 # l1GtUnpack = GT unpacker 00013 InitialMuGmtInputTag = cms.InputTag("gmtDigis"), 00014 00015 # input tag for the final GT DAQ and GMT records: 00016 # GT unpacker: gtPackedUnpack (cloned unpacker from L1GtPackUnpackAnalyzer.cfg) 00017 FinalGtGmtInputTag = cms.InputTag("gtPackedUnpack") 00018 00019 ) 00020 00021