CMS 3D CMS Logo

goodOfflinePrimaryVertices_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 goodOfflinePrimaryVertices = cms.EDFilter("VertexSelector",
4  src = cms.InputTag("offlinePrimaryVertices"),
5  cut = cms.string("!isFake && ndof >= 4.0 && abs(z) <= 24.0 && abs(position.Rho) <= 2.0"),
6  filter = cms.bool(False)
7 )
8