CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_14/src/RecoEcal/EgammaClusterProducers/python/cleanAndMergeSuperClusters_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 
00004 uncleanedNonDuplicatedHybridSuperClusters = cms.EDProducer("CleanAndMergeProducer",
00005             # input collections:
00006           
00007             cleanScInputTag   = cms.InputTag('hybridSuperClusters'),
00008             uncleanScInputTag = cms.InputTag('uncleanedHybridSuperClusters'),
00009 
00010             # names of collections to be produced:
00011             bcCollection = cms.string('hybridBarrelBasicClusters'),
00012             scCollection = cms.string('hybridBarrelSuperClusters'),
00013             refScCollection = cms.string('hybridCleanedCollectionRef'),
00014             # some extras (taken from hybridSuperClusters_cfi.py )
00015             ecalhitproducer = cms.string('ecalRecHit'),
00016             ecalhitcollection = cms.string('EcalRecHitsEB'),
00017             posCalcParameters = cms.PSet( T0_barl      = cms.double(7.4),
00018                                           T0_endc      = cms.double(3.1), 
00019                                           T0_endcPresh = cms.double(1.2),
00020                                           LogWeighted  = cms.bool(True),
00021                                           W0           = cms.double(4.2),
00022                                           X0           = cms.double(0.89)
00023                                           )
00024             
00025             )
00026 
00027