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.razorMonitoring_cfi import razorMonitoring
0004 
0005 hltRazorMonitoring = razorMonitoring.clone(
0006     FolderName = 'HLT/SUSY/RsqMR270_Rsq0p09_MR200',
0007     met       = "pfMet", # pfMet
0008     jets      = "ak4PFJets", # ak4PFJets, ak4PFJetsCHS
0009 
0010 
0011     numGenericTriggerEventPSet = dict(
0012         andOr     =  False,
0013         andOrHlt      = True, # True:=OR; False:=AND
0014         hltInputTag   = "TriggerResults::HLT" ,
0015         hltPaths      = ["HLT_RsqMR300_Rsq0p09_MR200_v*"], 
0016         errorReplyHlt =  False,
0017         verbosityLevel = 1),
0018 
0019     denGenericTriggerEventPSet = dict(
0020         andOr          = False,
0021         andOrHlt       =  True,
0022         dcsInputTag    =  "scalersRawToDigi",
0023         dcsRecordInputTag = "onlineMetaDataDigis",
0024         dcsPartitions  = [24, 25, 26, 27, 28, 29], # 24-27: strip, 28-29: pixel, we should add all other detectors !
0025         andOrDcs       =  False,
0026         errorReplyDcs  = True ,
0027         verbosityLevel = 1,
0028         hltPaths = ["HLT_Ele27_WPTight_Gsf*", "HLT_Ele30_WPTight_Gsf*", "HLT_Ele32_WPTight_Gsf*"])
0029 )
0030