CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
HiCorrectedIslandEndcapSuperClusters_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # Energy scale correction for Island Endcap SuperClusters
4 correctedIslandEndcapSuperClusters = cms.EDProducer("HiEgammaSCCorrectionMaker",
5  corectedSuperClusterCollection = cms.string(''),
6  sigmaElectronicNoise = cms.double(0.15),
7  superClusterAlgo = cms.string('Island'),
8  etThresh = cms.double(0.0),
9  rawSuperClusterProducer = cms.InputTag("islandSuperClusters","islandEndcapSuperClusters"),
10  applyEnergyCorrection = cms.bool(True),
11  isl_fCorrPset = cms.PSet(
12  fEtaVect = cms.vdouble(0.993,0,0.00546,1.165,-0.180844,+0.040312),
13  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),
14  fBremThVect = cms.vdouble(1.2,1.2),
15  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),
16  brLinearLowThr = cms.double(0.0),
17  brLinearHighThr = cms.double(0.0),
18  minR9Barrel = cms.double(0.94),
19  minR9Endcap = cms.double(0.95),
20  maxR9 = cms.double(1.5),
21  ),
22  VerbosityLevel = cms.string('ERROR'),
23  recHitProducer = cms.InputTag("ecalRecHit","EcalRecHitsEE")
24 )
25 
26