Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

L1T DQM Ignore BX range mismatch in OMTF to uGMT comparison #22771

Merged
merged 1 commit into from Apr 3, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions DQM/L1TMonitor/python/L1TStage2uGMT_cff.py
Expand Up @@ -84,6 +84,7 @@
# List of bins to ignore
ignoreBins = {
'Bmtf' : [1],
'Omtf' : [1],
'Emtf' : [1]
}

Expand Down Expand Up @@ -111,6 +112,7 @@
regionalMuonCollection1Title = cms.untracked.string("OMTF output data"),
regionalMuonCollection2Title = cms.untracked.string("uGMT input data from OMTF"),
summaryTitle = cms.untracked.string("Summary of comparison between OMTF output muons and uGMT input muons from OMTF"),
ignoreBin = cms.untracked.vint32(ignoreBins['Omtf']),
verbose = cms.untracked.bool(False),
)

Expand Down
1 change: 1 addition & 0 deletions DQM/L1TMonitorClient/python/L1TStage2uGMTClient_cff.py
Expand Up @@ -58,6 +58,7 @@
l1tStage2OmtfOutVsuGMTInRatioClient.inputNum = cms.untracked.string(ugmtDqmDir+'/OMTFoutput_vs_uGMTinput/'+errHistNumStr)
l1tStage2OmtfOutVsuGMTInRatioClient.inputDen = cms.untracked.string(ugmtDqmDir+'/OMTFoutput_vs_uGMTinput/'+errHistDenStr)
l1tStage2OmtfOutVsuGMTInRatioClient.ratioTitle = cms.untracked.string('Summary of mismatch rates between OMTF output muons and uGMT input muons from OMTF')
l1tStage2OmtfOutVsuGMTInRatioClient.ignoreBin = cms.untracked.vint32(ignoreBins['Omtf'])

l1tStage2EmtfOutVsuGMTInRatioClient = l1tStage2uGMTMuonVsuGMTMuonCopy1RatioClient.clone()
l1tStage2EmtfOutVsuGMTInRatioClient.monitorDir = cms.untracked.string(ugmtDqmDir+'/EMTFoutput_vs_uGMTinput')
Expand Down