CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
pfClusterIsolationRemapForPAT_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 from RecoEgamma.EgammaIsolationAlgos.pfClusterIsolationRemap_cff import electronHcalPFClusterIsolationRemapper as _electronHcalPFClusterIsolationRemapper
4 from RecoEgamma.EgammaIsolationAlgos.pfClusterIsolationRemap_cff import electronEcalPFClusterIsolationRemapper as _electronEcalPFClusterIsolationRemapper
5 from RecoEgamma.EgammaIsolationAlgos.pfClusterIsolationRemap_cff import photonHcalPFClusterIsolationRemapper as _photonHcalPFClusterIsolationRemapper
6 from RecoEgamma.EgammaIsolationAlgos.pfClusterIsolationRemap_cff import photonEcalPFClusterIsolationRemapper as _photonEcalPFClusterIsolationRemapper
7 
8 electronHcalPFClusterIsolationProducerGSFixed = _electronHcalPFClusterIsolationRemapper.clone(
9  candidateProducer = 'gedGsfElectronsGSFixed',
10  newToOldObjectMap = 'gedGsfElectronsGSFixed'
11 )
12 
13 photonHcalPFClusterIsolationProducerGSFixed = _photonHcalPFClusterIsolationRemapper.clone(
14  candidateProducer = 'gedPhotonsGSFixed',
15  newToOldObjectMap = 'gedPhotonsGSFixed'
16 )
17 
18 electronEcalPFClusterIsolationProducerGSFixed = _electronEcalPFClusterIsolationRemapper.clone(
19  candidateProducer = 'gedGsfElectronsGSFixed',
20  newToOldObjectMap = 'gedGsfElectronsGSFixed'
21 )
22 
23 photonEcalPFClusterIsolationProducerGSFixed = _photonEcalPFClusterIsolationRemapper.clone(
24  candidateProducer = 'gedPhotonsGSFixed',
25  newToOldObjectMap = 'gedPhotonsGSFixed'
26 )
27 
28 pfClusterIsolationSequence = cms.Sequence(
29  electronEcalPFClusterIsolationProducerGSFixed +
30  photonEcalPFClusterIsolationProducerGSFixed +
31  electronHcalPFClusterIsolationProducerGSFixed +
32  photonHcalPFClusterIsolationProducerGSFixed
33 )