Skip to content

Commit

Permalink
propagate module name change
Browse files Browse the repository at this point in the history
  • Loading branch information
pvmulder committed Mar 20, 2014
1 parent 00ad886 commit 8cb9e15
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion PhysicsTools/PatAlgos/python/tools/jetTools.py
Original file line number Diff line number Diff line change
Expand Up @@ -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' )
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions RecoBTag/SecondaryVertex/python/secondaryVertex_cff.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 *
Expand Down

0 comments on commit 8cb9e15

Please sign in to comment.