Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002
00003 from RecoEgamma.EgammaElectronProducers.electronSequence_cff import *
00004 from RecoEgamma.EgammaElectronProducers.uncleanedOnlyElectronSequence_cff import *
00005 from RecoEgamma.EgammaPhotonProducers.photonSequence_cff import *
00006 from RecoEgamma.EgammaPhotonProducers.conversionSequence_cff import *
00007 from RecoEgamma.EgammaPhotonProducers.conversionTrackSequence_cff import *
00008 from RecoEgamma.EgammaPhotonProducers.allConversionSequence_cff import *
00009 from RecoEgamma.EgammaIsolationAlgos.egammaIsolationSequence_cff import *
00010 from RecoEgamma.EgammaIsolationAlgos.interestingEgammaIsoDetIdsSequence_cff import *
00011 from RecoEgamma.PhotonIdentification.photonId_cff import *
00012 from RecoEgamma.ElectronIdentification.electronIdSequence_cff import *
00013 from RecoEgamma.EgammaHFProducers.hfEMClusteringSequence_cff import *
00014 from TrackingTools.Configuration.TrackingTools_cff import *
00015
00016 egammaGlobalReco = cms.Sequence(electronGsfTracking*conversionTrackSequence*allConversionSequence)
00017 egammareco = cms.Sequence(electronSequence*conversionSequence*photonSequence)
00018 egammaHighLevelRecoPrePF = cms.Sequence(gsfEcalDrivenElectronSequence*uncleanedOnlyElectronSequence*conversionSequence*photonSequence)
00019 egammaHighLevelRecoPostPF = cms.Sequence(gsfElectronMergingSequence*interestingEgammaIsoDetIds*photonIDSequence*eIdSequence*hfEMClusteringSequence)
00020 egammarecoFull = cms.Sequence(egammareco*interestingEgammaIsoDetIds*photonIDSequence*eIdSequence*hfEMClusteringSequence)
00021 egammarecoWithID = cms.Sequence(egammareco*photonIDSequence*eIdSequence)
00022 egammareco_woConvPhotons = cms.Sequence(electronSequence*photonSequence)
00023 egammareco_withIsolation = cms.Sequence(egammareco*egammaIsolationSequence)
00024 egammareco_withIsolation_woConvPhotons = cms.Sequence(egammareco_woConvPhotons*egammaIsolationSequence)
00025 egammareco_withPhotonID = cms.Sequence(egammareco*photonIDSequence)
00026 egammareco_withElectronID = cms.Sequence(egammareco*eIdSequence)
00027
00028 egammarecoFull_woHFElectrons = cms.Sequence(egammareco*interestingEgammaIsoDetIds*photonIDSequence*eIdSequence)