File indexing completed on 2024-04-06 12:24:40
0001 import FWCore.ParameterSet.Config as cms
0002
0003
0004
0005
0006 fixedMatrixSuperClusters = cms.EDProducer("FixedMatrixSuperClusterProducer",
0007 barrelSuperclusterCollection = cms.string('fixedMatrixBarrelSuperClusters'),
0008 endcapEtaSearchRoad = cms.double(0.14),
0009 barrelClusterCollection = cms.string('fixedMatrixBarrelBasicClusters'),
0010 dynamicPhiRoad = cms.bool(True),
0011 endcapClusterProducer = cms.string('fixedMatrixBasicClusters'),
0012 barrelPhiSearchRoad = cms.double(0.8),
0013 endcapPhiSearchRoad = cms.double(0.6),
0014 VerbosityLevel = cms.string('ERROR'),
0015 seedTransverseEnergyThreshold = cms.double(1.0),
0016 doBarrel = cms.bool(False),
0017 endcapSuperclusterCollection = cms.string('fixedMatrixEndcapSuperClusters'),
0018 barrelEtaSearchRoad = cms.double(0.06),
0019
0020 bremRecoveryPset = cms.PSet(
0021 barrel = cms.PSet(
0022 cryVec = cms.vint32(16, 13, 11, 10, 9,
0023 8, 7, 6, 5, 4,
0024 3),
0025 cryMin = cms.int32(2),
0026 etVec = cms.vdouble(5.0, 10.0, 15.0, 20.0, 30.0,
0027 40.0, 45.0, 55.0, 135.0, 195.0,
0028 225.0)
0029 ),
0030 endcap = cms.PSet(
0031 a = cms.double(47.85),
0032 c = cms.double(0.1201),
0033 b = cms.double(108.8)
0034 )
0035 ),
0036 doEndcaps = cms.bool(True),
0037 endcapClusterCollection = cms.string('fixedMatrixEndcapBasicClusters'),
0038 barrelClusterProducer = cms.string('fixedMatrixBasicClusters')
0039 )
0040
0041