CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_14/src/RecoVertex/AdaptiveVertexFinder/python/inclusiveVertexing_cff.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 from RecoVertex.AdaptiveVertexFinder.inclusiveVertexFinder_cfi import *
00004 from RecoVertex.AdaptiveVertexFinder.vertexMerger_cfi import *
00005 from RecoVertex.AdaptiveVertexFinder.trackVertexArbitrator_cfi import *
00006 
00007 inclusiveMergedVertices = vertexMerger.clone()
00008 inclusiveMergedVertices.secondaryVertices = cms.InputTag("trackVertexArbitrator")
00009 inclusiveMergedVertices.maxFraction = 0.2
00010 inclusiveMergedVertices.minSignificance = 10.
00011 
00012 inclusiveVertexing = cms.Sequence(inclusiveVertexFinder*vertexMerger*trackVertexArbitrator*inclusiveMergedVertices)
00013