Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002
00003 pvSelection = cms.PSet(
00004 minNdof = cms.double( 4. )
00005 , maxZ = cms.double( 24. )
00006 , maxRho = cms.double( 2. )
00007 )
00008
00009 goodOfflinePrimaryVertices = cms.EDFilter(
00010 "PrimaryVertexObjectFilter"
00011 , filterParams = pvSelection
00012 , filter = cms.bool( False )
00013 , src = cms.InputTag( 'offlinePrimaryVertices' )
00014 )
00015
00016 goodOfflinePrimaryVertexFilter = cms.EDFilter(
00017
00018
00019
00020
00021 "PrimaryVertexFilter"
00022 , pvSelection
00023 , NPV = cms.int32( 1 )
00024 , pvSrc = cms.InputTag( 'goodOfflinePrimaryVertices' )
00025 )