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.htMonitoring_cfi import htMonitoring
0004 
0005 hltHTmonitoring = htMonitoring.clone(
0006     FolderName = 'HLT/HT/PFMETNoMu120/',
0007     met       = "pfMet", # pfMet
0008     jets      = "ak4PFJets", # ak4PFJets, ak4PFJetsCHS
0009     electrons = "gedGsfElectrons", # while pfIsolatedElectronsEI are reco::PFCandidate !
0010     muons     = "muons", # while pfIsolatedMuonsEI are reco::PFCandidate !
0011 
0012     histoPSet = dict(
0013                  lsPSet = dict(
0014                       nbins =   250,
0015                       xmin  =    0.,
0016                       xmax  = 2500.),
0017                  htPSet = dict(
0018                       nbins =  200,
0019                       xmin  =  -0.5,
0020                       xmax  = 19999.5)
0021      ),
0022 
0023     numGenericTriggerEventPSet = dict(
0024           andOr         =  False,
0025           #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 !
0026           andOrHlt      = True,# True:=OR; False:=AND
0027           hltInputTag   =  "TriggerResults::HLT",
0028           hltPaths      = ["HLT_PFMETNoMu120_PFMHTNoMu120_IDTight_v*"], # HLT_ZeroBias_v*
0029           #hltDBKey     = "EXO_HLT_HT",
0030           errorReplyHlt =  False,
0031           verbosityLevel= 0),
0032 
0033    denGenericTriggerEventPSet = dict(
0034           andOr         =  False,
0035           dcsInputTag   = "scalersRawToDigi",
0036           dcsRecordInputTag = "onlineMetaDataDigis",
0037           dcsPartitions = [24, 25, 26, 27, 28, 29], # 24-27: strip, 28-29: pixel, we should add all other detectors !
0038           andOrDcs      = False,
0039           errorReplyDcs = True,
0040           verbosityLevel = 0,
0041           hltPaths      = ["HLT_IsoMu27_v*"])
0042 )
0043