CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_2_9/src/RecoEgamma/EgammaHLTProducers/python/hltIslandSuperClusters_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 #
00004 # $Id: hltIslandSuperClusters_cfi.py,v 1.2 2008/04/21 03:25:38 rpw Exp $
00005 #
00006 # Island SuperCluster producer
00007 hltIslandSuperClusters = cms.EDProducer("SuperClusterProducer",
00008     barrelSuperclusterCollection = cms.string('islandBarrelSuperClusters'),
00009     endcapEtaSearchRoad = cms.double(0.14),
00010     barrelClusterCollection = cms.string('islandBarrelBasicClusters'),
00011     endcapClusterProducer = cms.string('hltIslandBasicClusters'),
00012     barrelPhiSearchRoad = cms.double(0.2),
00013     endcapPhiSearchRoad = cms.double(0.4),
00014     VerbosityLevel = cms.string('ERROR'),
00015     seedTransverseEnergyThreshold = cms.double(1.5),
00016     endcapSuperclusterCollection = cms.string('islandEndcapSuperClusters'),
00017     barrelEtaSearchRoad = cms.double(0.06),
00018     doBarrel = cms.bool(True),
00019     doEndcaps = cms.bool(True),
00020     endcapClusterCollection = cms.string('islandEndcapBasicClusters'),
00021     barrelClusterProducer = cms.string('hltIslandBasicClusters')
00022 )
00023 
00024