CMS 3D CMS Logo

/data/doxygen/doxygen-1.7.3/gen/CMSSW_4_2_8/src/RecoEcal/EgammaClusterProducers/python/multi5x5BasicClusters_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 from RecoEcal.EgammaClusterProducers.ecalRecHitFlags_cfi import *
00004 
00005 # Multi5x5 BasicCluster producer
00006 multi5x5BasicClusters = cms.EDProducer("Multi5x5ClusterProducer",
00007 
00008     # which regions should be clusterized
00009     doEndcap = cms.bool(True),
00010     doBarrel = cms.bool(False),
00011 
00012     endcapHitProducer = cms.string('ecalRecHit'),
00013     barrelClusterCollection = cms.string('multi5x5BarrelBasicClusters'),
00014     IslandEndcapSeedThr = cms.double(0.18),
00015     barrelShapeAssociation = cms.string('multi5x5BarrelShapeAssoc'),
00016     clustershapecollectionEE = cms.string('multi5x5EndcapShape'),
00017     clustershapecollectionEB = cms.string('multi5x5BarrelShape'),
00018     VerbosityLevel = cms.string('ERROR'),
00019     endcapHitCollection = cms.string('EcalRecHitsEE'),
00020     barrelHitProducer = cms.string('ecalRecHit'),
00021     endcapShapeAssociation = cms.string('multi5x5EndcapShapeAssoc'),
00022     barrelHitCollection = cms.string('EcalRecHitsEB'),
00023     endcapClusterCollection = cms.string('multi5x5EndcapBasicClusters'),
00024     IslandBarrelSeedThr = cms.double(0.5),
00025     posCalcParameters = cms.PSet( T0_barl      = cms.double(7.4),
00026                                   T0_endc      = cms.double(3.1),        
00027                                   T0_endcPresh = cms.double(1.2),
00028                                   LogWeighted  = cms.bool(True),
00029                                   W0           = cms.double(4.2),
00030                                   X0           = cms.double(0.89)
00031                                  ),                                              
00032     # recHit flags to be excluded from seeding
00033     RecHitFlagToBeExcluded = cms.vint32(
00034         ecalRecHitFlag_kFaultyHardware,
00035         ecalRecHitFlag_kPoorCalib,
00036         ecalRecHitFlag_kSaturated,
00037         ecalRecHitFlag_kLeadingEdgeRecovered,
00038         ecalRecHitFlag_kNeighboursRecovered,
00039         ecalRecHitFlag_kTowerRecovered,
00040         ecalRecHitFlag_kDead,
00041         ecalRecHitFlag_kWeird,
00042     )
00043 )