00001 import FWCore.ParameterSet.Config as cms 00002 00003 from RecoEgamma.EgammaElectronProducers.electronSequence_cff import * 00004 from RecoEgamma.EgammaPhotonProducers.photonSequence_cff import * 00005 from RecoEgamma.EgammaPhotonProducers.conversionSequence_cff import * 00006 from RecoEgamma.EgammaIsolationAlgos.egammaIsolationSequence_cff import * 00007 from RecoEgamma.PhotonIdentification.photonId_cff import * 00008 from RecoEgamma.ElectronIdentification.electronIdSequence_cff import * 00009 00010 00011 egammareco = cms.Sequence(electronSequence*conversionSequence*photonSequence) 00012 egammarecoFull = cms.Sequence(egammareco*egammaIsolationSequence*photonIDSequence*eIdSequence) 00013 egammarecoWithID = cms.Sequence(egammareco*photonIDSequence*eIdSequence) 00014 egammareco_woConvPhotons = cms.Sequence(electronSequence*photonSequence) 00015 egammareco_withIsolation = cms.Sequence(egammareco*egammaIsolationSequence) 00016 egammareco_withIsolation_woConvPhotons = cms.Sequence(egammareco_woConvPhotons*egammaIsolationSequence) 00017 egammareco_withPhotonID = cms.Sequence(egammareco*photonIDSequence) 00018 egammareco_withElectronID = cms.Sequence(egammareco*eIdSequence)