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 l1GtDataEmulAnalyzer = cms.EDAnalyzer("L1GtDataEmulAnalyzer",
0004 
0005     # input tag for the L1 GT hardware DAQ/EVM record
0006     L1GtDataInputTag = cms.InputTag("gtDigis"),
0007     #
0008     # input tag for the L1 GT emulator DAQ/EVM record
0009     L1GtEmulInputTag = cms.InputTag("l1GtEmulDigis"),
0010     #
0011     # input tag for the L1 GCT hardware record 
0012     L1GctDataInputTag = cms.InputTag("gctDigis")   
0013 )
0014 
0015