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 
0004 uncleanedNonDuplicatedHybridSuperClusters = cms.EDProducer("CleanAndMergeProducer",
0005             # input collections:
0006           
0007             cleanScInputTag   = cms.InputTag('hybridSuperClusters'),
0008             uncleanScInputTag = cms.InputTag('uncleanedHybridSuperClusters'),
0009 
0010             # names of collections to be produced:
0011             bcCollection = cms.string('hybridBarrelBasicClusters'),
0012             scCollection = cms.string('hybridBarrelSuperClusters'),
0013             refScCollection = cms.string('hybridCleanedCollectionRef'),
0014             # some extras (taken from hybridSuperClusters_cfi.py )
0015             ecalhitproducer = cms.string('ecalRecHit'),
0016             ecalhitcollection = cms.string('EcalRecHitsEB'),
0017             posCalcParameters = cms.PSet( T0_barl      = cms.double(7.4),
0018                                           T0_endc      = cms.double(3.1), 
0019                                           T0_endcPresh = cms.double(1.2),
0020                                           LogWeighted  = cms.bool(True),
0021                                           W0           = cms.double(4.2),
0022                                           X0           = cms.double(0.89)
0023                                           )
0024             
0025             )
0026 
0027