Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:07:47

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
0004 l1tStage1Layer2 = DQMEDAnalyzer('L1TGCT',
0005     gctCentralJetsSource = cms.InputTag("caloStage1LegacyFormatDigis","cenJets"),
0006     gctForwardJetsSource = cms.InputTag("caloStage1LegacyFormatDigis","forJets"),
0007     gctTauJetsSource = cms.InputTag("caloStage1LegacyFormatDigis","tauJets"),
0008     gctIsoTauJetsSource = cms.InputTag("caloStage1LegacyFormatDigis","isoTauJets"),       
0009     gctEnergySumsSource = cms.InputTag("caloStage1LegacyFormatDigis"),
0010     gctIsoEmSource = cms.InputTag("caloStage1LegacyFormatDigis","isoEm"),
0011     gctNonIsoEmSource = cms.InputTag("caloStage1LegacyFormatDigis","nonIsoEm"),
0012     monitorDir = cms.untracked.string("L1T/L1TStage1Layer2"),
0013     stage1_layer2_ = cms.bool(True),
0014     verbose = cms.untracked.bool(False),
0015     DQMStore = cms.untracked.bool(True),
0016     disableROOToutput = cms.untracked.bool(True),
0017     filterTriggerType = cms.int32(1)
0018 )
0019