CMS 3D CMS Logo

/data/doxygen/doxygen-1.7.3/gen/CMSSW_4_2_8/src/CommonTools/ParticleFlow/python/Isolation/pfIsolatedMuons_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 pfIsolatedMuons  = cms.EDFilter(
00004     "IsolatedPFCandidateSelector",
00005     src = cms.InputTag("pfSelectedMuons"),
00006     isolationValueMaps = cms.VInputTag(
00007         cms.InputTag("isoValMuonWithCharged"),
00008         cms.InputTag("isoValMuonWithNeutral"),
00009         cms.InputTag("isoValMuonWithPhotons")
00010         ),
00011     ## if True isolation is relative to pT
00012     isRelative = cms.bool(True),
00013     ## if True all isoValues are combined (summed)
00014     isCombined = cms.bool(True),
00015     ## not used when isCombined=True
00016     # non-optimised default for loose absulute isolation
00017     isolationCuts = cms.vdouble( 10, 
00018                                  10,
00019                                  10 ),
00020     # not used when isCombined=False
00021     # default value for combined relative with DR={0.4,0.4,0.4}
00022     # and weight={1.,1.,1.}; optimised for Z->mu,mu
00023     combinedIsolationCut = cms.double(0.15) 
00024     )