CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
correctedFixedMatrixSuperClustersWithPreshower_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # Energy scale correction for Fixed Matrix Endcap SuperClusters
4 correctedFixedMatrixSuperClustersWithPreshower = cms.EDProducer("EgammaSCCorrectionMaker",
5  corectedSuperClusterCollection = cms.string(''),
6  sigmaElectronicNoise = cms.double(0.15),
7  superClusterAlgo = cms.string('FixedMatrix'),
8  etThresh = cms.double(0.0),
9  rawSuperClusterProducer = cms.InputTag("fixedMatrixSuperClustersWithPreshower"),
10  applyEnergyCorrection = cms.bool(True),
11  # energy correction
12  fix_fCorrPset = cms.PSet(
13  brLinearLowThr = cms.double(0.9),
14  fBremVec = cms.vdouble(-0.1234, 0.2347, 0.8831, 0.002377, 1.037),
15  brLinearHighThr = cms.double(5.0),
16  fEtEtaVec = cms.vdouble(1.002, -0.09255, 0.0, 0.0, -4.072,
17  67.93, -7.333, 0.0, 0.0, 0.0,
18  2.6),
19  corrF = cms.vint32(0, 0, 1)
20  ),
21  VerbosityLevel = cms.string('ERROR'),
22  recHitProducer = cms.InputTag("ecalRecHit","EcalRecHitsEE")
23 )
24 
25