CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
HiIslandSuperClusters_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 #
4 #
5 # Island SuperCluster producer
6 islandSuperClusters = cms.EDProducer("HiSuperClusterProducer",
7  barrelSuperclusterCollection = cms.string('islandBarrelSuperClusters'),
8  endcapEtaSearchRoad = cms.double(0.14),
9  barrelClusterCollection = cms.string('islandBarrelBasicClusters'),
10  endcapClusterProducer = cms.string('islandBasicClusters'),
11  barrelPhiSearchRoad = cms.double(0.8),
12  endcapPhiSearchRoad = cms.double(0.6),
13  VerbosityLevel = cms.string('ERROR'),
14  seedTransverseEnergyThreshold = cms.double(1.0),
15  barrelBCEnergyThreshold = cms.double(0),
16  endcapBCEnergyThreshold = cms.double(0),
17  endcapSuperclusterCollection = cms.string('islandEndcapSuperClusters'),
18  barrelEtaSearchRoad = cms.double(0.07),
19  doBarrel = cms.bool(True),
20  doEndcaps = cms.bool(True),
21  endcapClusterCollection = cms.string('islandEndcapBasicClusters'),
22  barrelClusterProducer = cms.string('islandBasicClusters')
23 )
24 
25