CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
l1GtDataEmulAnalyzer_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 l1GtDataEmulAnalyzer = cms.EDAnalyzer("L1GtDataEmulAnalyzer",
4 
5  # input tag for the L1 GT hardware DAQ/EVM record
6  L1GtDataInputTag = cms.InputTag("gtDigis"),
7  #
8  # input tag for the L1 GT emulator DAQ/EVM record
9  L1GtEmulInputTag = cms.InputTag("l1GtEmulDigis"),
10  #
11  # input tag for the L1 GCT hardware record
12  L1GctDataInputTag = cms.InputTag("gctDigis")
13 )
14 
15