Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:24:40

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 #
0004 #
0005 #------------------
0006 #Preshower clustering:
0007 #------------------
0008 from RecoEcal.EgammaClusterProducers.multi5x5SuperClustersWithPreshower_cfi import *
0009 # producer for endcap SuperClusters including preshower energy
0010 from RecoEcal.EgammaClusterProducers.correctedMulti5x5SuperClustersWithPreshower_cfi import *
0011 # producer for preshower cluster shapes
0012 from RecoEcal.EgammaClusterProducers.multi5x5PreshowerClusterShape_cfi import *
0013 # create sequence for preshower clustering
0014 multi5x5PreshowerClusteringTask = cms.Task(correctedMulti5x5SuperClustersWithPreshower,
0015                                                    multi5x5PreshowerClusterShape,
0016                                                    uncleanedOnlyMulti5x5SuperClustersWithPreshower,
0017                                                    uncleanedOnlyCorrectedMulti5x5SuperClustersWithPreshower)
0018 
0019 multi5x5PreshowerClusteringSequence = cms.Sequence(multi5x5PreshowerClusteringTask)