CMS 3D CMS Logo

L1TGCT_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
4 l1tGct = DQMEDAnalyzer('L1TGCT',
5  gctCentralJetsSource = cms.InputTag("gctDigis","cenJets"),
6  gctForwardJetsSource = cms.InputTag("gctDigis","forJets"),
7  gctTauJetsSource = cms.InputTag("gctDigis","tauJets"),
8  gctIsoTauJetsSource = cms.InputTag("gctDigis","fake"),
9  gctEnergySumsSource = cms.InputTag("gctDigis"),
10  gctIsoEmSource = cms.InputTag("gctDigis","isoEm"),
11  gctNonIsoEmSource = cms.InputTag("gctDigis","nonIsoEm"),
12  monitorDir = cms.untracked.string("L1T/L1TGCT"),
13  verbose = cms.untracked.bool(False),
14  stage1_layer2_ = cms.bool(False),
15  DQMStore = cms.untracked.bool(True),
16  disableROOToutput = cms.untracked.bool(True),
17  filterTriggerType = cms.int32(1)
18 )
19 
20