CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
pfClusterIsolationRemap_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 electronHcalPFClusterIsolationRemapper = cms.EDProducer('ElectronPFClusterIsolationRemapper',
4  candidateProducer = cms.InputTag('gsFixedGsfElectrons'),
5  newToOldObjectMap = cms.InputTag('gsFixedGsfElectrons'),
6  isolationMap = cms.InputTag('electronHcalPFClusterIsolationProducer', '', cms.InputTag.skipCurrentProcess())
7 )
8 
9 photonHcalPFClusterIsolationRemapper = cms.EDProducer('PhotonPFClusterIsolationRemapper',
10  candidateProducer = cms.InputTag('gsFixedGEDPhotons'),
11  newToOldObjectMap = cms.InputTag('gsFixedGEDPhotons'),
12  isolationMap = cms.InputTag('photonHcalPFClusterIsolationProducer', '', cms.InputTag.skipCurrentProcess())
13 )
14 
15 electronEcalPFClusterIsolationRemapper = cms.EDProducer('ElectronPFClusterIsolationRemapper',
16  candidateProducer = cms.InputTag('gsFixedGsfElectrons'),
17  newToOldObjectMap = cms.InputTag('gsFixedGsfElectrons'),
18  isolationMap = cms.InputTag('electronEcalPFClusterIsolationProducer', '', cms.InputTag.skipCurrentProcess())
19 )
20 
21 photonEcalPFClusterIsolationRemapper = cms.EDProducer('PhotonPFClusterIsolationRemapper',
22  candidateProducer = cms.InputTag('gsFixedGEDPhotons'),
23  newToOldObjectMap = cms.InputTag('gsFixedGEDPhotons'),
24  isolationMap = cms.InputTag('photonEcalPFClusterIsolationProducer', '', cms.InputTag.skipCurrentProcess())
25 )
26 
27 pfClusterIsolationRemapSequence = cms.Sequence(
28  electronHcalPFClusterIsolationRemapper +
29  photonHcalPFClusterIsolationRemapper +
30  electronEcalPFClusterIsolationRemapper +
31  photonEcalPFClusterIsolationRemapper
32 )