CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_4_4_5_patch3/src/CommonTools/ParticleFlow/python/ParticleSelectors/pfMuonsFromVertex_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 pfMuonsFromVertex = cms.EDFilter(
00004     "IPCutPFCandidateSelector",
00005     src = cms.InputTag("pfAllMuons"),  # PFCandidate source
00006     vertices = cms.InputTag("offlinePrimaryVertices"),  # vertices source
00007     d0Cut = cms.double(0.2),  # transverse IP
00008     dzCut = cms.double(0.5),  # longitudinal IP
00009     d0SigCut = cms.double(99.),  # transverse IP significance
00010     dzSigCut = cms.double(99.),  # longitudinal IP significance
00011     )