Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-03-17 11:17:20

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 #
0004 #
0005 #------------------
0006 #Preshower clustering:
0007 #------------------
0008 # producer for endcap SuperClusters including preshower energy
0009 from RecoEcal.EgammaClusterProducers.correctedEndcapSuperClustersWithPreshower_cfi import *
0010 # producer for preshower cluster shapes
0011 from RecoEcal.EgammaClusterProducers.preshowerClusterShape_cfi import *
0012 # create sequence for preshower clustering
0013 preshowerClusteringTask = cms.Task(correctedEndcapSuperClustersWithPreshower, preshowerClusterShape)
0014 preshowerClusteringSequence = cms.Sequence(preshowerClusteringTask)
0015