CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_4_1_8_patch9/src/PhysicsTools/PFCandProducer/python/Isolation/pfIsolatedElectrons_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 pfIsolatedElectrons  = cms.EDFilter(
00004     "IsolatedPFCandidateSelector",
00005     src = cms.InputTag("pfSelectedElectrons"),
00006     isolationValueMaps = cms.VInputTag(
00007         cms.InputTag("isoValElectronWithCharged"),
00008         cms.InputTag("isoValElectronWithNeutral"),
00009         cms.InputTag("isoValElectronWithPhotons")
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.}; no optimal value found, yet.
00023     combinedIsolationCut = cms.double(0.2)
00024     )
00025