CMS 3D CMS Logo

BTVHLTOfflineSource_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
4 BTVHLTOfflineSource = DQMEDAnalyzer(
5  "BTVHLTOfflineSource",
6  #
7  dirname = cms.untracked.string("HLT/BTV"),
8  processname = cms.string("HLT"),
9  verbose = cms.untracked.bool(False),
10  #
11  triggerSummaryLabel = cms.InputTag("hltTriggerSummaryAOD","","HLT"),
12  triggerResultsLabel = cms.InputTag("TriggerResults","","HLT"),
13  onlineDiscrLabelPF = cms.InputTag("hltDeepCombinedSecondaryVertexBJetTagsPF", "probb"),
14  onlineDiscrLabelCalo = cms.InputTag("hltDeepCombinedSecondaryVertexBJetTagsCalo", "probb"),
15  offlineDiscrLabelb = cms.InputTag("pfDeepCSVJetTags", "probb"),
16  offlineDiscrLabelbb = cms.InputTag("pfDeepCSVJetTags", "probbb"),
17  hltFastPVLabel = cms.InputTag("hltFastPrimaryVertex"),
18  hltPFPVLabel = cms.InputTag("hltVerticesPFSelector"),
19  hltCaloPVLabel = cms.InputTag("hltVerticesL3"),
20  offlinePVLabel = cms.InputTag("offlinePrimaryVertices"),
21  turnon_threshold_loose = cms.double(0.2),
22  turnon_threshold_medium = cms.double(0.5),
23  turnon_threshold_tight = cms.double(0.8),
24  #
25  pathPairs = cms.VPSet(
26  cms.PSet(
27  pathname = cms.string("HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ_PFDiJet30_PFBtagDeepCSV_1p5_v"),
28  pathtype = cms.string("PF"),
29  ),
30  cms.PSet(
31  pathname = cms.string("HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ_CaloDiJet30_CaloBtagDeepCSV_1p5_v"),
32  pathtype = cms.string("Calo"),
33  ),
34  cms.PSet(
35  pathname = cms.string("HLT_PFHT380_SixPFJet32_DoublePFBTagDeepCSV_"),
36  pathtype = cms.string("PF"),
37  ),
38  cms.PSet(
39  pathname = cms.string("HLT_PFHT380_SixPFJet32_DoublePFBTagDeepCSV_"),
40  pathtype = cms.string("Calo"),
41  )
42  )
43 )
44