Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 
0004 uncleanSCRecovered = cms.EDProducer("UncleanSCRecoveryProducer",
0005 
0006             # input collections:
0007             cleanBcCollection = cms.InputTag('hybridSuperClusters','hybridBarrelBasicClusters'),
0008             cleanScCollection = cms.InputTag('hybridSuperClusters',''),
0009                                     
0010             uncleanBcCollection = cms.InputTag('hybridSuperClusters','uncleanOnlyHybridBarrelBasicClusters'),
0011             uncleanScCollection = cms.InputTag('hybridSuperClusters','uncleanOnlyHybridSuperClusters'),
0012             # names of collections to be produced:
0013             bcCollection = cms.string('uncleanHybridBarrelBasicClusters'),
0014             scCollection = cms.string('uncleanHybridSuperClusters'),
0015 
0016             )
0017 
0018