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 # This will take cleaned and uncleaned collections and save only cleaned
0004 # and the differences between cleaned and uncleaned
0005 #
0006 
0007 hybridSuperClusters = cms.EDProducer("UnifiedSCCollectionProducer",
0008             # input collections:
0009             cleanBcCollection   = cms.InputTag('cleanedHybridSuperClusters',
0010                                                'hybridBarrelBasicClusters'),
0011             cleanScCollection   = cms.InputTag('cleanedHybridSuperClusters',''),
0012             uncleanBcCollection = cms.InputTag('uncleanedHybridSuperClusters',
0013                                                'hybridBarrelBasicClusters'),
0014             uncleanScCollection = cms.InputTag('uncleanedHybridSuperClusters',''),
0015             # names of collections to be produced:
0016             bcCollection = cms.string('hybridBarrelBasicClusters'),
0017             scCollection = cms.string(''),
0018             bcCollectionUncleanOnly = cms.string('uncleanOnlyHybridBarrelBasicClusters'),
0019             scCollectionUncleanOnly = cms.string('uncleanOnlyHybridSuperClusters'),
0020 
0021             )
0022 
0023