Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-06-13 03:23:39

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 from DQMOffline.Trigger.BTagAndProbeMonitoring_cfi import BTagAndProbeMonitoring
0004 
0005 BTagAndProbeMonitoring = BTagAndProbeMonitoring.clone(
0006     FolderName = 'HLT/BTV/default/',
0007     requireValidHLTPaths = True,
0008     applyLeptonPVcuts = False,
0009     leptonPVcuts = dict(dxy = 9999., 
0010                         dz  = 9999.),
0011     
0012     electrons = "gedGsfElectrons", # while pfIsolatedElectronsEI are reco::PFCandidate !
0013     elecID    = "egmGsfElectronIDsForDQM:cutBasedElectronID-RunIIIWinter22-V1-tight", #Electron ID
0014     muons     = "muons", # while pfIsolatedMuonsEI are reco::PFCandidate !
0015     vertices  = "offlinePrimaryVertices",
0016     
0017     btagAlgos = ['pfParticleNetAK4DiscriminatorsJetTagsForRECO:BvsAll'],
0018     workingpoint = 0.2, # Medium wp
0019     leptJetDeltaRmin = 0.4,
0020     bJetDeltaEtaMax  = 9999.,
0021     
0022     #genericTriggerEventPSet = dict(andOr = False,
0023     #                               andOrHlt = True,
0024     #                               hltInputTag = "TriggerResults::HLT",
0025     #                               errorReplyHlt = False,
0026     #                               verbosityLevel = 0,
0027     #                              ),
0028    
0029     genericTriggerEventPSet = dict( andOr         = False,
0030                                        andOrHlt      = True, # True:=OR; False:=AND
0031                                        hltInputTag   = "TriggerResults::HLT",
0032                                        errorReplyHlt = False,
0033                                        dcsInputTag   = "scalersRawToDigi",
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 = 0,),
0038 )
0039