-
Notifications
You must be signed in to change notification settings - Fork 4.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
give OnlineLuminosityRecord info to HLT's LumiMonitor plugin
- Loading branch information
Showing
9 changed files
with
150 additions
and
193 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
49 changes: 49 additions & 0 deletions
49
DQMOffline/Trigger/python/DQMOffline_LumiMonitoring_cff.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
# lumi from scalers | ||
#hltScalersRawToDigi4DQM = cms.EDProducer( "ScalersRawToDigi", | ||
# scalersInputTag = cms.InputTag( "rawDataCollector" ) | ||
#) | ||
|
||
from DQM.HLTEvF.lumiMonitor_cfi import lumiMonitor as _lumiMonitor | ||
|
||
hltLumiMonitor = _lumiMonitor.clone( | ||
folderName = 'HLT/LumiMonitoring', | ||
scalers = 'scalersRawToDigi', | ||
onlineMetaDataDigis = 'onlineMetaDataDigis', | ||
doPixelLumi = False, | ||
useBPixLayer1 = False, | ||
pixelClusters = 'hltSiPixelClusters', | ||
minNumberOfPixelsPerCluster = 2, | ||
minPixelClusterCharge = 15000, | ||
histoPSet = dict( | ||
lsPSet = dict( | ||
nbins = 2500 | ||
), | ||
pixelClusterPSet = dict( | ||
nbins = 200, | ||
xmin = -0.5, | ||
xmax = 19999.5 | ||
), | ||
puPSet = dict( | ||
nbins = 130, | ||
xmin = 0, | ||
xmax = 130 | ||
), | ||
lumiPSet = dict( | ||
nbins = 440, | ||
xmin = 0, | ||
xmax = 22000 | ||
), | ||
pixellumiPSet = dict( | ||
nbins = 300, | ||
xmin = 0, | ||
xmax = 3 | ||
) | ||
) | ||
) | ||
|
||
lumiMonitorHLTsequence = cms.Sequence( | ||
# hltScalersRawToDigi4DQM + | ||
hltLumiMonitor | ||
) |
Oops, something went wrong.