CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
fixedMatrixBasicClusters_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # FixedMatrix BasicCluster producer
4 fixedMatrixBasicClusters = cms.EDProducer("FixedMatrixClusterProducer",
5  endcapHitProducer = cms.string('ecalRecHit'),
6  barrelClusterCollection = cms.string('fixedMatrixBarrelBasicClusters'),
7  IslandEndcapSeedThr = cms.double(0.18),
8  barrelShapeAssociation = cms.string('fixedMatrixBarrelShapeAssoc'),
9  clustershapecollectionEE = cms.string('fixedMatrixEndcapShape'),
10  clustershapecollectionEB = cms.string('fixedMatrixBarrelShape'),
11  VerbosityLevel = cms.string('ERROR'),
12  endcapHitCollection = cms.string('EcalRecHitsEE'),
13  barrelHitProducer = cms.string('ecalRecHit'),
14  endcapShapeAssociation = cms.string('fixedMatrixEndcapShapeAssoc'),
15  barrelHitCollection = cms.string('EcalRecHitsEB'),
16  endcapClusterCollection = cms.string('fixedMatrixEndcapBasicClusters'),
17  IslandBarrelSeedThr = cms.double(0.5),
18  posCalcParameters = cms.PSet( T0_barl = cms.double(7.4),
19  T0_endc = cms.double(3.1),
20  T0_endcPresh = cms.double(1.2),
21  LogWeighted = cms.bool(True),
22  W0 = cms.double(4.2),
23  X0 = cms.double(0.89)
24  )
25 )
26 
27