Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:25:17

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 #
0004 #
0005 # Island SuperCluster producer
0006 islandSuperClusters = cms.EDProducer("HiSuperClusterProducer",
0007     barrelSuperclusterCollection = cms.string('islandBarrelSuperClusters'),
0008     endcapEtaSearchRoad = cms.double(0.14),
0009     barrelClusterCollection = cms.string('islandBarrelBasicClusters'),
0010     endcapClusterProducer = cms.string('islandBasicClusters'),
0011     barrelPhiSearchRoad = cms.double(0.8),
0012     endcapPhiSearchRoad = cms.double(0.6),
0013     VerbosityLevel = cms.string('ERROR'),
0014     seedTransverseEnergyThreshold = cms.double(1.0),
0015     barrelBCEnergyThreshold = cms.double(0),
0016     endcapBCEnergyThreshold = cms.double(0),
0017     endcapSuperclusterCollection = cms.string('islandEndcapSuperClusters'),
0018     barrelEtaSearchRoad = cms.double(0.07),
0019     doBarrel = cms.bool(True),
0020     doEndcaps = cms.bool(True),
0021     endcapClusterCollection = cms.string('islandEndcapBasicClusters'),
0022     barrelClusterProducer = cms.string('islandBasicClusters')
0023 )
0024 
0025