Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 from DQMOffline.Trigger.dijetMonitoring_cfi import dijetMonitoring
0004 DiPFjetAve40_Prommonitoring = dijetMonitoring.clone(
0005     FolderName = 'HLT/JME/Jets/AK4/PF/HLT_DiPFJetAve40/',
0006     met       = "pfMet", # pfMet
0007     #pfjets    = "ak4PFJets", # ak4PFJets, ak4PFJetsCHS
0008     dijetSrc  = "ak4PFJets", # ak4PFJets, ak4PFJetsCHS
0009     electrons = "gedGsfElectrons", # while pfIsolatedElectronsEI are reco::PFCandidate !
0010     muons     = "muons", # while pfIsolatedMuonsEI are reco::PFCandidate !
0011     ptcut     = 20, # while pfIsolatedMuonsEI are reco::PFCandidate !
0012 
0013     histoPSet = dict(dijetPSet = dict(
0014             nbins = 200 ,
0015             xmin  =  0,
0016             xmax  = 1000.),
0017                      dijetPtThrPSet = dict(
0018                              nbins = 50 ,
0019                              xmin  =  0.,
0020                              xmax  = 100.)),
0021 
0022     numGenericTriggerEventPSet = dict(andOr = False,
0023                                       dbLabel = "JetMETDQMTrigger", # 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 !                                                                                                                                                        
0024                                       andOrHlt      = True, # True:=OR; False:=AND                                                                                           
0025                                       hltInputTag   = "TriggerResults::HLT" ,
0026                                       hltPaths      = ["HLT_DiPFJetAve40_v*"], # HLT_ZeroBias_v*                                                                             
0027                                       errorReplyHlt =  False,
0028                                       verbosityLevel = 1),
0029 
0030 
0031     denGenericTriggerEventPSet = dict(andOr = False,
0032                                       dcsInputTag   = "scalersRawToDigi",
0033                                       dcsRecordInputTag = "onlineMetaDataDigis",
0034                                       dcsPartitions = [24, 25, 26, 27, 28, 29], # 24-27: strip, 28-29: pixel, we should add all other detectors !                            
0035                                       andOrDcs      = False,
0036                                       errorReplyDcs = True,
0037                                       verbosityLevel = 1)
0038 )