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 # Energy scale correction for Island SuperClusters
0004 correctedIslandBarrelSuperClusters = cms.EDProducer("HiEgammaSCCorrectionMaker",
0005     corectedSuperClusterCollection = cms.string(''),
0006     sigmaElectronicNoise = cms.double(0.03),
0007     superClusterAlgo = cms.string('Island'),
0008     etThresh = cms.double(0.0),
0009     rawSuperClusterProducer = cms.InputTag("islandSuperClusters","islandBarrelSuperClusters"),
0010     applyEnergyCorrection = cms.bool(True),
0011     isl_fCorrPset = cms.PSet(
0012         fEtaVect = cms.vdouble(0.993,0,0.00546,1.165,-0.180844,+0.040312),
0013         fBremVect = cms.vdouble(-0.773799,2.73438,-1.07235,0.986821,-0.0101822,0.000306744,1.00595,-0.0495958,0.00451986,1.00595,-0.0495958,0.00451986),
0014         fBremThVect = cms.vdouble(1.2,1.2),
0015         fEtEtaVect = cms.vdouble(0.9497,0.006985,1.03754,-0.0142667,-0.0233993,0,0,0.908915,0.0137322,16.9602,-29.3093,19.8976,-5.92666,0.654571),
0016         brLinearLowThr = cms.double(0.0),
0017         brLinearHighThr = cms.double(0.0),
0018     minR9Barrel = cms.double(0.94),
0019     minR9Endcap = cms.double(0.95),
0020     maxR9 = cms.double(1.5),
0021     ),
0022     VerbosityLevel = cms.string('ERROR'),
0023     recHitProducer = cms.InputTag("ecalRecHit","EcalRecHitsEB")
0024 )