CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
pfBasedPhotonIso_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
6 
7 pfSelectedPhotons = cms.EDFilter(
8  "GenericPFCandidateSelector",
9  src = cms.InputTag("particleFlow"),
10  cut = cms.string("pdgId()==22 && mva_nothing_gamma>0")
11 # cut = cms.string("pdgId()==22")
12 )
13 
14 pfBasedPhotonIsoSequence = cms.Sequence(
15  pfParticleSelectionSequence +
16  pfSelectedPhotons +
17  photonPFIsolationDepositsSequence +
18  photonPFIsolationValuesSequence
19  )