Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:10:02

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 from DQMOffline.Trigger.objMonitoring_cfi import objMonitoring
0004 
0005 hltobjmonitoring = objMonitoring.clone(
0006     FolderName = 'HLT/GENERIC/',
0007     doMETHistos = True,
0008     met       = "pfMet",
0009     jets      = "ak4PFJetsCHS",
0010     electrons = "gedGsfElectrons",
0011     muons     = "muons",
0012     photons   = "gedPhotons",
0013     tracks    = "generalTracks",
0014     doJetHistos = True,
0015     doHTHistos = True,
0016     doHMesonGammaHistos = False,
0017 
0018     histoPSet = dict(
0019             metPSet = dict(
0020                     nbins =  200  ,
0021                     xmin  =   -0.5,
0022                     xmax  = 19999.5),
0023 
0024             phiPSet = dict(
0025                     nbins =  64  ,
0026                     xmin  =   -3.1416,
0027                     xmax  = 3.1416),
0028 
0029             jetetaPSet = dict(
0030                     nbins = 100 ,
0031                     xmin  = -5,
0032                     xmax  = 5),
0033 
0034             detajjPSet = dict(
0035                     nbins = 90 ,
0036                     xmin  = 0,
0037                     xmax  = 9),
0038 
0039             dphijjPSet = dict(
0040                     nbins =  64 ,
0041                     xmin  =  0,
0042                     xmax  = 3.1416),
0043 
0044             mindphijmetPSet = dict(
0045                     nbins =  64,
0046                     xmin  =  0,
0047                     xmax  = 3.1416),
0048 
0049             htPSet = dict(
0050                     nbins = 60  ,
0051                     xmin  = -0.5,
0052                     xmax  = 1499.5),
0053 
0054             hmgetaPSet = dict(
0055                     nbins = 60  ,
0056                     xmin  = -2.6,
0057                     xmax  = 2.6),
0058         ),
0059 
0060     numGenericTriggerEventPSet = dict(
0061         andOr         = False,
0062         #dbLabel       = "ExoDQMTrigger", # it does not exist yet, we should consider the possibility of using the DB, but as it is now it will need a label per path !
0063         andOrHlt      = True, # True:=OR; False:=AND
0064         hltInputTag   =  "TriggerResults::HLT",
0065         hltPaths      = ["HLT_PFMETNoMu120_PFMHTNoMu120_IDTight_v*"], # HLT_ZeroBias_v*
0066         #hltDBKey      = "EXO_HLT_MET",
0067         errorReplyHlt =  False,
0068         verbosityLevel = 1),
0069 
0070     denGenericTriggerEventPSet = dict(
0071         andOr         =  False,
0072         dcsInputTag   =  "scalersRawToDigi",
0073         dcsRecordInputTag = "onlineMetaDataDigis",
0074         dcsPartitions = [ 24, 25, 26, 27, 28, 29], # 24-27: strip, 28-29: pixel, we should add all other detectors !
0075         andOrDcs      =  False,
0076         errorReplyDcs = True,
0077         verbosityLevel = 1)
0078 )
0079 
0080