CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_10_patch1/src/RecoEcal/EgammaClusterProducers/python/unifiedSCCollection_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 # This will take cleaned and uncleaned collections and save only cleaned
00004 # and the differences between cleaned and uncleaned
00005 #
00006 
00007 hybridSuperClusters = cms.EDProducer("UnifiedSCCollectionProducer",
00008             # input collections:
00009             cleanBcCollection   = cms.InputTag('cleanedHybridSuperClusters',
00010                                                'hybridBarrelBasicClusters'),
00011             cleanScCollection   = cms.InputTag('cleanedHybridSuperClusters',''),
00012             uncleanBcCollection = cms.InputTag('uncleanedHybridSuperClusters',
00013                                                'hybridBarrelBasicClusters'),
00014             uncleanScCollection = cms.InputTag('uncleanedHybridSuperClusters',''),
00015             # names of collections to be produced:
00016             bcCollection = cms.string('hybridBarrelBasicClusters'),
00017             scCollection = cms.string(''),
00018             bcCollectionUncleanOnly = cms.string('uncleanOnlyHybridBarrelBasicClusters'),
00019             scCollectionUncleanOnly = cms.string('uncleanOnlyHybridSuperClusters'),
00020 
00021             )
00022 
00023