Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:24:40

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 #
0004 #
0005 # Island SuperCluster producer
0006 islandSuperClusters = cms.EDProducer("SuperClusterProducer",
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     endcapSuperclusterCollection = cms.string('islandEndcapSuperClusters'),
0016     barrelEtaSearchRoad = cms.double(0.06),
0017     doBarrel = cms.bool(True),
0018     doEndcaps = cms.bool(True),
0019     endcapClusterCollection = cms.string('islandEndcapBasicClusters'),
0020     barrelClusterProducer = cms.string('islandBasicClusters'),
0021     posCalcParameters = cms.PSet( T0_barl      = cms.double(7.4),
0022                                   T0_endc      = cms.double(3.1),        
0023                                   T0_endcPresh = cms.double(1.2),
0024                                   LogWeighted  = cms.bool(True),
0025                                   W0           = cms.double(4.2),
0026                                   X0           = cms.double(0.89)
0027                                  )                                 
0028 )
0029 
0030 from Configuration.Eras.Modifier_pA_2016_cff import pA_2016
0031 from Configuration.Eras.Modifier_peripheralPbPb_cff import peripheralPbPb
0032 from Configuration.ProcessModifiers.pp_on_AA_cff import pp_on_AA
0033 from Configuration.Eras.Modifier_pp_on_XeXe_2017_cff import pp_on_XeXe_2017
0034 from Configuration.Eras.Modifier_ppRef_2017_cff import ppRef_2017
0035 
0036 from RecoHI.HiEgammaAlgos.HiIslandSuperClusters_cfi import islandSuperClusters as _hiIslandSuperClusters
0037 
0038 for e in [pA_2016, peripheralPbPb, pp_on_AA, pp_on_XeXe_2017, ppRef_2017]:
0039     e.toReplaceWith(islandSuperClusters, _hiIslandSuperClusters)