CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_2_9/src/RecoEcal/EgammaClusterProducers/python/hybridClusteringSequence_cff.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 #------------------
00004 #Hybrid clustering:
00005 #------------------
00006 # Producer for Hybrid BasicClusters and SuperClusters
00007 from RecoEcal.EgammaClusterProducers.hybridSuperClusters_cfi import *
00008 # Energy scale correction for Hybrid SuperClusters
00009 from RecoEcal.EgammaClusterProducers.correctedHybridSuperClusters_cfi import *
00010 # hybrid clustering sequence
00011 #uncleanedHybridSuperClusters = RecoEcal.EgammaClusterProducers.hybridSuperClusters_cfi.hybridSuperClusters.clone()
00012 uncleanedHybridSuperClusters = cleanedHybridSuperClusters.clone()
00013 uncleanedHybridSuperClusters.RecHitSeverityToBeExcluded = cms.vstring()
00014 uncleanedHybridSuperClusters.excludeFlagged = False
00015 
00016 from RecoEcal.EgammaClusterProducers.unifiedSCCollection_cfi import *
00017 
00018 hybridClusteringSequence = cms.Sequence(
00019                 cleanedHybridSuperClusters *
00020                 uncleanedHybridSuperClusters *
00021                 hybridSuperClusters *
00022                 correctedHybridSuperClusters*
00023                 uncleanedOnlyCorrectedHybridSuperClusters)
00024