CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_9_patch3/src/RecoEcal/EgammaClusterProducers/python/cosmicSuperClusters_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 #
00004 # $Id: cosmicSuperClusters_cfi.py,v 1.4 2009/11/26 17:52:42 dlevans Exp $
00005 #
00006 # Moved to Multi5x5SuperCluster producer
00007 cosmicSuperClusters = cms.EDProducer("Multi5x5SuperClusterProducer",
00008 
00009     VerbosityLevel = cms.string('ERROR'),
00010     endcapClusterProducer = cms.string('cosmicBasicClusters'),
00011     barrelClusterProducer = cms.string('cosmicBasicClusters'),
00012     endcapClusterCollection = cms.string('CosmicEndcapBasicClusters'),
00013     barrelClusterCollection = cms.string('CosmicBarrelBasicClusters'),
00014     endcapSuperclusterCollection = cms.string('CosmicEndcapSuperClusters'),                                 
00015     barrelSuperclusterCollection = cms.string('CosmicBarrelSuperClusters'),
00016     barrelEtaSearchRoad = cms.double(0.20),
00017     barrelPhiSearchRoad = cms.double(0.55),                                 
00018     endcapEtaSearchRoad = cms.double(0.14),
00019     endcapPhiSearchRoad = cms.double(0.6),
00020     seedTransverseEnergyThreshold = cms.double(0.0),
00021     doBarrel = cms.bool(True),
00022     doEndcaps = cms.bool(True),
00023 
00024     # if dynamicPhiRoad is set to false the parameters below
00025     # are not used and the standard fixed phi roads are used
00026     dynamicPhiRoad = cms.bool(False),
00027     bremRecoveryPset = cms.PSet(
00028         barrel = cms.PSet(
00029             cryVec = cms.vint32(16, 13, 11, 10, 9,
00030                 8, 7, 6, 5, 4,
00031                 3),
00032             cryMin = cms.int32(2),
00033             etVec = cms.vdouble(5.0, 10.0, 15.0, 20.0, 30.0,
00034                 40.0, 45.0, 55.0, 135.0, 195.0,
00035                 225.0)
00036         ),
00037         endcap = cms.PSet(
00038             a = cms.double(47.85),
00039             c = cms.double(0.1201),
00040             b = cms.double(108.8)
00041         )
00042     )
00043 
00044 
00045 )
00046