Go to the documentation of this file.00001
00002 import FWCore.ParameterSet.Config as cms
00003
00004
00005
00006
00007
00008
00009 calibratedElectrons = cms.EDProducer("CalibratedElectronProducer",
00010
00011
00012 inputElectronsTag = cms.InputTag('gsfElectrons'),
00013
00014 nameEnergyReg = cms.InputTag('eleRegressionEnergy:eneRegForGsfEle'),
00015 nameEnergyErrorReg = cms.InputTag('eleRegressionEnergy:eneErrorRegForGsfEle'),
00016
00017 recHitCollectionEB = cms.InputTag('reducedEcalRecHitsEB'),
00018 recHitCollectionEE = cms.InputTag('reducedEcalRecHitsEE'),
00019
00020 outputGsfElectronCollectionLabel = cms.string('calibratedGsfElectrons'),
00021
00022 nameNewEnergyReg = cms.string('eneRegForGsfEle'),
00023 nameNewEnergyErrorReg = cms.string('eneErrorRegForGsfEle'),
00024
00025
00026
00027 isMC = cms.bool(False),
00028
00029
00030 verbose = cms.bool(False),
00031
00032
00033 synchronization = cms.bool(False),
00034
00035 updateEnergyError = cms.bool(True),
00036
00037
00038
00039
00040 correctionsType = cms.int32(2),
00041
00042
00043 applyLinearityCorrection = cms.bool(True),
00044
00045
00046
00047 combinationType = cms.int32(3),
00048
00049
00050
00051
00052 lumiRatio = cms.double(0.0),
00053
00054
00055
00056
00057
00058
00059
00060 inputDataset = cms.string("22Jan2013ReReco"),
00061
00062
00063 combinationRegressionInputPath = cms.string("EgammaAnalysis/ElectronTools/data/eleEnergyRegWeights_WithSubClusters_VApr15.root"),
00064 scaleCorrectionsInputPath = cms.string("EgammaAnalysis/ElectronTools/data/scalesNewReg-May2013.csv"),
00065 linearityCorrectionsInputPath = cms.string("EgammaAnalysis/ElectronTools/data/linearityNewReg-May2013.csv")
00066 )
00067
00068