Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 11:58:38

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 #
0004 # define our AlCa isolation sequence
0005 #
0006 
0007 from RecoEgamma.EgammaIsolationAlgos.eleIsolationSequence_cff import *
0008 
0009 #this copy might look silly, but it can be useful to decouple from
0010 #the standard isolation sequence
0011 alcaElectronIsolationSequence=cms.Sequence(eleIsolationSequence)
0012 
0013 #
0014 # SA: in case we need to modify the sequence, we should use something like
0015 #
0016 # alcaModule = module_to_modify.clone(value_to_change='newvalue')
0017 # alcaElectronIsolationSequence.replace(module, alcaModule)
0018 #