File indexing completed on 2023-03-17 11:17:59
0001 import FWCore.ParameterSet.Config as cms
0002
0003 mvaElectrons = cms.EDProducer("ElectronIdMVABased",
0004 vertexTag = cms.InputTag('offlinePrimaryVertices'),
0005 electronTag = cms.InputTag('gedGsfElectrons'),
0006 HZZmvaWeightFile = cms.vstring(
0007 "RecoEgamma/ElectronIdentification/data/TMVA_Category_BDTSimpleCat_10_17Feb2011.weights.xml",
0008 "RecoEgamma/ElectronIdentification/data/TMVA_Category_BDTSimpleCat_12_17Feb2011.weights.xml",
0009 "RecoEgamma/ElectronIdentification/data/TMVA_Category_BDTSimpleCat_20_17Feb2011.weights.xml",
0010 "RecoEgamma/ElectronIdentification/data/TMVA_Category_BDTSimpleCat_22_17Feb2011.weights.xml"
0011 ),
0012 thresholdBarrel = cms.double( -0.1875 ),
0013 thresholdEndcap = cms.double( -0.1075 ),
0014 thresholdIsoDR03Barrel = cms.double( 10.0 ),
0015 thresholdIsoDR03Endcap = cms.double( 10.0 )
0016 )