Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 # List of bins to ignore
0004 ignoreBinsDeStage2Bmtf = [1]
0005 
0006 # compares the unpacked BMTF regional muon collection to the emulated BMTF regional muon collection
0007 # only muons that do not match are filled in the histograms
0008 from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
0009 l1tdeStage2Bmtf = DQMEDAnalyzer(
0010     "L1TStage2RegionalMuonCandComp",
0011     regionalMuonCollection1 = cms.InputTag("bmtfDigis", "BMTF"),
0012     # regionalMuonCollection2 = cms.InputTag("valBmtfDigis", "BMTF"), # didn't remove the default config
0013     regionalMuonCollection2 = cms.InputTag("valBmtfAlgoSel", "BMTF"),
0014     monitorDir = cms.untracked.string("L1TEMU/L1TdeStage2BMTF"),
0015     regionalMuonCollection1Title = cms.untracked.string("BMTF data"),
0016     regionalMuonCollection2Title = cms.untracked.string("BMTF emulator"),
0017     summaryTitle = cms.untracked.string("Summary of comparison between BMTF muons and BMTF emulator muons"),
0018     ignoreBin = cms.untracked.vint32(ignoreBinsDeStage2Bmtf),
0019     verbose = cms.untracked.bool(False),
0020     hasDisplacementInfo = cms.untracked.bool(True)
0021 )
0022