CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
pfGSFixLinkerForPAT_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 from RecoParticleFlow.PFProducer.pfGSFixLinker_cfi import pfGSFixLinker
4 from RecoParticleFlow.PFProducer.pfEGFootprintGSFixLinker_cfi import pfEGFootprintGSFixLinker
5 
6 particleFlowGSFixed = pfGSFixLinker.clone(
7  GsfElectrons = 'gedGsfElectronsGSFixed',
8  Photons = 'gedPhotonsGSFixed'
9 )
10 
11 particleBasedIsolationGSFixed = pfEGFootprintGSFixLinker.clone(
12  GsfElectrons = 'gedGsfElectronsGSFixed',
13  Photons = 'gedPhotonsGSFixed'
14 )
15 
16 from RecoParticleFlow.PFProducer.pfLinker_cff import particleFlowPtrs
17 particleFlowTmpPtrs = particleFlowPtrs.clone()
18 particleFlowPtrs = particleFlowPtrs
19 
20 particleFlowLinks = cms.Sequence(
21  particleFlowGSFixed +
22  particleBasedIsolationGSFixed +
23  particleFlowTmpPtrs +
24  particleFlowPtrs
25 )