CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_10_patch2/src/CommonTools/ParticleFlow/python/goodOfflinePrimaryVertices_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 from PhysicsTools.SelectorUtils.pvSelector_cfi import pvSelector
00004 
00005 goodOfflinePrimaryVertices = cms.EDFilter(
00006     "PrimaryVertexObjectFilter",
00007     filterParams = pvSelector.clone( minNdof = cms.double(4.0), maxZ = cms.double(24.0) ),
00008     src=cms.InputTag('offlinePrimaryVertices')
00009     )
00010