CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
unifiedSCCollection_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # This will take cleaned and uncleaned collections and save only cleaned
4 # and the differences between cleaned and uncleaned
5 #
6 
7 hybridSuperClusters = cms.EDProducer("UnifiedSCCollectionProducer",
8  # input collections:
9  cleanBcCollection = cms.InputTag('cleanedHybridSuperClusters',
10  'hybridBarrelBasicClusters'),
11  cleanScCollection = cms.InputTag('cleanedHybridSuperClusters',''),
12  uncleanBcCollection = cms.InputTag('uncleanedHybridSuperClusters',
13  'hybridBarrelBasicClusters'),
14  uncleanScCollection = cms.InputTag('uncleanedHybridSuperClusters',''),
15  # names of collections to be produced:
16  bcCollection = cms.string('hybridBarrelBasicClusters'),
17  scCollection = cms.string(''),
18  bcCollectionUncleanOnly = cms.string('uncleanOnlyHybridBarrelBasicClusters'),
19  scCollectionUncleanOnly = cms.string('uncleanOnlyHybridSuperClusters'),
20 
21  )
22 
23