forked from cms-btv-pog/RecoBTag-PerformanceMeasurements
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTaggability_cff.py
More file actions
18 lines (15 loc) · 903 Bytes
/
Taggability_cff.py
File metadata and controls
18 lines (15 loc) · 903 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import FWCore.ParameterSet.Config as cms
Taggability = cms.EDFilter("Taggability",
JetCollection = cms.InputTag('iterativeCone5CaloJets'),
ApplyJetCorrections = cms.bool(True),
jetCorrectionsLabel = cms.string('L2L3JetCorrectorIC5Calo'),
MinPt = cms.double(30.),
MaxEta = cms.double(2.4),
bTagTrackEventIPtagInfos = cms.string('impactParameterTagInfos'),
MinNtracks = cms.int32(1),
MinTrkPt = cms.double(1),
MinNjets = cms.int32(1),
PrimaryVertexCollection = cms.InputTag('offlinePrimaryVertices'),
MinNPrimaryVertices = cms.int32(0),
WriteHistograms = cms.bool(True)
)