CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
primaryVertexFilter_cfi.py
Go to the documentation of this file.
1 
2 import FWCore.ParameterSet.Config as cms
3 
4 primaryVertexFilter = cms.EDFilter("GoodVertexFilter",
5  vertexCollection = cms.InputTag('offlinePrimaryVertices'),
6  minimumNDOF = cms.uint32(4) ,
7  maxAbsZ = cms.double(24),
8  maxd0 = cms.double(2)
9  )