CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
islandSuperClusters_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("SuperClusterProducer",
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  endcapSuperclusterCollection = cms.string('islandEndcapSuperClusters'),
16  barrelEtaSearchRoad = cms.double(0.06),
17  doBarrel = cms.bool(True),
18  doEndcaps = cms.bool(True),
19  endcapClusterCollection = cms.string('islandEndcapBasicClusters'),
20  barrelClusterProducer = cms.string('islandBasicClusters'),
21  posCalcParameters = cms.PSet( T0_barl = cms.double(7.4),
22  T0_endc = cms.double(3.1),
23  T0_endcPresh = cms.double(1.2),
24  LogWeighted = cms.bool(True),
25  W0 = cms.double(4.2),
26  X0 = cms.double(0.89)
27  )
28 )
29 
30