Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:25:08

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                             )