CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
BTVHLTOfflineSource_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 BTVHLTOfflineSource = cms.EDAnalyzer(
4  "BTVHLTOfflineSource",
5  #
6  dirname = cms.untracked.string("HLT/BTV"),
7  processname = cms.string("HLT"),
8  verbose = cms.untracked.bool(False),
9  #
10  triggerSummaryLabel = cms.InputTag("hltTriggerSummaryAOD","","HLT"),
11  triggerResultsLabel = cms.InputTag("TriggerResults","","HLT"),
12  offlineCSVLabelPF = cms.InputTag("pfCombinedInclusiveSecondaryVertexV2BJetTags"),
13  offlineCSVLabelCalo = cms.InputTag("pfCombinedInclusiveSecondaryVertexV2BJetTags"),
14  hltFastPVLabel = cms.InputTag("hltFastPrimaryVertex"),
15  hltPFPVLabel = cms.InputTag("hltVerticesPFSelector"),
16  hltCaloPVLabel = cms.InputTag("hltVerticesL3"),
17  offlinePVLabel = cms.InputTag("offlinePrimaryVertices"),
18 
19  #
20  pathPairs = cms.VPSet(
21  cms.PSet(
22  pathname = cms.string("HLT_QuadPFJet_BTagCSV_p037_VBF"),
23  pathtype = cms.string("PF"),
24  ),
25  cms.PSet(
26  #pathname = cms.string("HLT_PFMET120_NoiseCleaned_BTagCSV07"),
27  pathname = cms.string("HLT_PFMET120_"),
28  pathtype = cms.string("Calo"),
29  )
30  )
31 )