CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_2_9/src/Calibration/EcalAlCaRecoProducers/python/electronIsolationSequence_cff.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 #
00004 # define our AlCa isolation sequence
00005 #
00006 
00007 from RecoEgamma.EgammaIsolationAlgos.eleIsolationSequence_cff import *
00008 
00009 #this copy might look silly, but it can be useful to decouple from
00010 #the standard isolation sequence
00011 alcaElectronIsolationSequence=cms.Sequence(eleIsolationSequence)
00012 
00013 #
00014 # SA: in case we need to modify the sequence, we should use something like
00015 #
00016 # alcaModule = module_to_modify.clone(value_to_change='newvalue')
00017 # alcaElectronIsolationSequence.replace(module, alcaModule)
00018 #