CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
idExternalRemapForPAT_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
4 
5 eidLooseGSFixed = eidLoose.clone(
6  candidateProducer = cms.InputTag('gedGsfElectronsGSFixed'),
7  newToOldObjectMap = cms.InputTag('gedGsfElectronsGSFixed'),
8 )
9 
10 eidRobustHighEnergyGSFixed = eidRobustHighEnergy.clone(
11  candidateProducer = cms.InputTag('gedGsfElectronsGSFixed'),
12  newToOldObjectMap = cms.InputTag('gedGsfElectronsGSFixed'),
13 )
14 
15 eidRobustLooseGSFixed = eidRobustLoose.clone(
16  candidateProducer = cms.InputTag('gedGsfElectronsGSFixed'),
17  newToOldObjectMap = cms.InputTag('gedGsfElectronsGSFixed'),
18 )
19 
20 eidRobustTightGSFixed = eidRobustTight.clone(
21  candidateProducer = cms.InputTag('gedGsfElectronsGSFixed'),
22  newToOldObjectMap = cms.InputTag('gedGsfElectronsGSFixed'),
23 )
24 
25 eidTightGSFixed = eidTight.clone(
26  candidateProducer = cms.InputTag('gedGsfElectronsGSFixed'),
27  newToOldObjectMap = cms.InputTag('gedGsfElectronsGSFixed'),
28 )
29 
30 ElectronIDExternalProducerRemapSequenceForPAT = cms.Sequence(
31  eidLooseGSFixed +
32  eidRobustHighEnergyGSFixed +
33  eidRobustLooseGSFixed +
34  eidRobustTightGSFixed +
35  eidTightGSFixed
36 )
37 
38 PhotonCutBasedIDLooseGSFixed = PhotonCutBasedIDLoose.clone(
39  candidateProducer = cms.InputTag('gedPhotonsGSFixed'),
40  newToOldObjectMap = cms.InputTag('gedPhotonsGSFixed'),
41 )
42 
43 PhotonCutBasedIDLooseEMGSFixed = PhotonCutBasedIDLooseEM.clone(
44  candidateProducer = cms.InputTag('gedPhotonsGSFixed'),
45  newToOldObjectMap = cms.InputTag('gedPhotonsGSFixed'),
46 )
47 
48 PhotonCutBasedIDTightGSFixed = PhotonCutBasedIDTight.clone(
49  candidateProducer = cms.InputTag('gedPhotonsGSFixed'),
50  newToOldObjectMap = cms.InputTag('gedPhotonsGSFixed'),
51 )
52 
53 PhotonIDExternalProducerRemapSequenceForPAT = cms.Sequence(
54  PhotonCutBasedIDLooseGSFixed +
55  PhotonCutBasedIDLooseEMGSFixed +
56  PhotonCutBasedIDTightGSFixed
57 )