00001 import FWCore.ParameterSet.Config as cms 00002 00003 #============================================================================== 00004 # The current official sequence is based on pixels 00005 #============================================================================== 00006 00007 from RecoEgamma.EgammaElectronProducers.gsfElectronSequence_cff import * 00008 # David Chamont: 00009 # 1) original code: electronSequence = cms.Sequence(gsfElectronSequence) 00010 # 2) what I would prefer: electronSequence = gsfElectronSequence 00011 # 3) what we have used for the moment: electronSequence = gsfElectronSequence.copy() 00012 # see: https://hypernews.cern.ch/HyperNews/CMS/get/recoDevelopment/849.html 00013 electronSequence = gsfElectronSequence.copy() 00014 00015 00016 #============================================================================== 00017 # An alternative sequence based on si-strip 00018 #============================================================================== 00019 00020 from RecoEgamma.EgammaElectronProducers.siStripElectronSequence_cff import * 00021