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 # List of bins to ignore
0003 ignoreBinsDeStage2Omtf = [1, 14]
0004 
0005 # compares the unpacked OMTF regional muon collection to the emulated OMTF regional muon collection
0006 # only muons that do not match are filled in the histograms
0007 from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
0008 l1tdeStage2Omtf = DQMEDAnalyzer(
0009     "L1TStage2RegionalMuonCandComp",
0010     regionalMuonCollection1 = cms.InputTag("omtfStage2Digis", ""),
0011     regionalMuonCollection2 = cms.InputTag("valOmtfDigis", "OMTF"),
0012     monitorDir = cms.untracked.string("L1TEMU/L1TdeStage2OMTF"),
0013     regionalMuonCollection1Title = cms.untracked.string("OMTF data"),
0014     regionalMuonCollection2Title = cms.untracked.string("OMTF emulator"),
0015     summaryTitle = cms.untracked.string("Summary of comparison between OMTF muons and OMTF emulator muons"),
0016     ignoreBadTrackAddress = cms.untracked.bool(True),
0017     ignoreBin = cms.untracked.vint32(ignoreBinsDeStage2Omtf),
0018     verbose = cms.untracked.bool(False),
0019 )
0020