diff --git a/PhysicsTools/PatAlgos/python/tools/jetTools.py b/PhysicsTools/PatAlgos/python/tools/jetTools.py index 394986aa94660..c38b2f43af7f9 100644 --- a/PhysicsTools/PatAlgos/python/tools/jetTools.py +++ b/PhysicsTools/PatAlgos/python/tools/jetTools.py @@ -292,7 +292,7 @@ def toolCode(self, process): if 'inclusiveSecondaryVertexFinderFilteredTagInfos' in acceptedTagInfos: if not hasattr( process, 'inclusiveVertexing' ): process.load( 'RecoVertex.AdaptiveVertexFinder.inclusiveVertexing_cff' ) - if not hasattr( process, 'inclusiveMergedVerticesFiltered' ): + if not hasattr( process, 'inclusiveVerticesFiltered' ): process.load( 'RecoBTag.SecondaryVertex.secondaryVertex_cff' ) if not hasattr( process, 'bToCharmDecayVertexMerged' ): process.load( 'RecoBTag.SecondaryVertex.bToCharmDecayVertexMerger_cfi' ) diff --git a/RecoBTag/SecondaryVertex/python/bToCharmDecayVertexMerger_cfi.py b/RecoBTag/SecondaryVertex/python/bToCharmDecayVertexMerger_cfi.py index 1191bb350e600..69ba021e8e8b9 100644 --- a/RecoBTag/SecondaryVertex/python/bToCharmDecayVertexMerger_cfi.py +++ b/RecoBTag/SecondaryVertex/python/bToCharmDecayVertexMerger_cfi.py @@ -2,7 +2,7 @@ bToCharmDecayVertexMerged = cms.EDProducer("BtoCharmDecayVertexMerger", primaryVertices = cms.InputTag("offlinePrimaryVertices"), - secondaryVertices = cms.InputTag("inclusiveMergedVerticesFiltered"), + secondaryVertices = cms.InputTag("inclusiveVerticesFiltered"), minDRUnique = cms.untracked.double(0.4), minvecSumIMifsmallDRUnique = cms.untracked.double(5.5), minCosPAtomerge = cms.untracked.double(0.99), diff --git a/RecoBTag/SecondaryVertex/python/inclusiveSecondaryVertexFinderTagInfos_cfi.py b/RecoBTag/SecondaryVertex/python/inclusiveSecondaryVertexFinderTagInfos_cfi.py index 3662ada5a917a..9a2d1e3a54768 100644 --- a/RecoBTag/SecondaryVertex/python/inclusiveSecondaryVertexFinderTagInfos_cfi.py +++ b/RecoBTag/SecondaryVertex/python/inclusiveSecondaryVertexFinderTagInfos_cfi.py @@ -5,7 +5,7 @@ inclusiveSecondaryVertexFinderTagInfos = secondaryVertexTagInfos.clone() # use external SV collection made from IVF -inclusiveSecondaryVertexFinderTagInfos.extSVCollection = cms.InputTag('inclusiveMergedVertices') +inclusiveSecondaryVertexFinderTagInfos.extSVCollection = cms.InputTag('inclusiveVertices') inclusiveSecondaryVertexFinderTagInfos.extSVDeltaRToJet = cms.double(0.3) inclusiveSecondaryVertexFinderTagInfos.useExternalSV = cms.bool(True) inclusiveSecondaryVertexFinderTagInfos.vertexCuts.fracPV = 0.79 ## 4 out of 5 is discarded diff --git a/RecoBTag/SecondaryVertex/python/secondaryVertex_cff.py b/RecoBTag/SecondaryVertex/python/secondaryVertex_cff.py index 4d24bc1c7b6fe..8d52a66477cc1 100644 --- a/RecoBTag/SecondaryVertex/python/secondaryVertex_cff.py +++ b/RecoBTag/SecondaryVertex/python/secondaryVertex_cff.py @@ -20,9 +20,9 @@ from RecoBTag.SecondaryVertex.combinedInclusiveSecondaryVertexBJetTags_cfi import * #from RecoBTag.SecondaryVertex.combinedIVFES_cfi import * #not yet using dedicated training, share CSV ones from RecoBTag.SecondaryVertex.bVertexFilter_cfi import * -inclusiveMergedVerticesFiltered = bVertexFilter.clone() -inclusiveMergedVerticesFiltered.vertexFilter.multiplicityMin = 2 -inclusiveMergedVerticesFiltered.secondaryVertices = cms.InputTag("inclusiveMergedVertices") +inclusiveVerticesFiltered = bVertexFilter.clone() +inclusiveVerticesFiltered.vertexFilter.multiplicityMin = 2 +inclusiveVerticesFiltered.secondaryVertices = cms.InputTag("inclusiveVertices") from RecoBTag.SecondaryVertex.bToCharmDecayVertexMerger_cfi import * from RecoBTag.SecondaryVertex.simpleInclusiveSecondaryVertexBJetTags_cfi import *