CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
fixedMatrixSuperClusters_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 #
4 #
5 # Fixed Matrix SuperCluster producer
6 fixedMatrixSuperClusters = cms.EDProducer("FixedMatrixSuperClusterProducer",
7  barrelSuperclusterCollection = cms.string('fixedMatrixBarrelSuperClusters'),
8  endcapEtaSearchRoad = cms.double(0.14),
9  barrelClusterCollection = cms.string('fixedMatrixBarrelBasicClusters'),
10  dynamicPhiRoad = cms.bool(True),
11  endcapClusterProducer = cms.string('fixedMatrixBasicClusters'),
12  barrelPhiSearchRoad = cms.double(0.8),
13  endcapPhiSearchRoad = cms.double(0.6),
14  VerbosityLevel = cms.string('ERROR'),
15  seedTransverseEnergyThreshold = cms.double(1.0),
16  doBarrel = cms.bool(False),
17  endcapSuperclusterCollection = cms.string('fixedMatrixEndcapSuperClusters'),
18  barrelEtaSearchRoad = cms.double(0.06),
19  # for brem recovery
20  bremRecoveryPset = cms.PSet(
21  barrel = cms.PSet(
22  cryVec = cms.vint32(16, 13, 11, 10, 9,
23  8, 7, 6, 5, 4,
24  3),
25  cryMin = cms.int32(2),
26  etVec = cms.vdouble(5.0, 10.0, 15.0, 20.0, 30.0,
27  40.0, 45.0, 55.0, 135.0, 195.0,
28  225.0)
29  ),
30  endcap = cms.PSet(
31  a = cms.double(47.85),
32  c = cms.double(0.1201),
33  b = cms.double(108.8)
34  )
35  ),
36  doEndcaps = cms.bool(True),
37  endcapClusterCollection = cms.string('fixedMatrixEndcapBasicClusters'),
38  barrelClusterProducer = cms.string('fixedMatrixBasicClusters')
39 )
40 
41