CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
electronIdMVABased_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 mvaElectrons = cms.EDFilter("ElectronIdMVABased",
4  vertexTag = cms.InputTag('offlinePrimaryVertices'),
5  electronTag = cms.InputTag('gedGsfElectrons'),
6  HZZmvaWeightFile = cms.vstring(
7  "RecoEgamma/ElectronIdentification/data/TMVA_Category_BDTSimpleCat_10_17Feb2011.weights.xml",
8  "RecoEgamma/ElectronIdentification/data/TMVA_Category_BDTSimpleCat_12_17Feb2011.weights.xml",
9  "RecoEgamma/ElectronIdentification/data/TMVA_Category_BDTSimpleCat_20_17Feb2011.weights.xml",
10  "RecoEgamma/ElectronIdentification/data/TMVA_Category_BDTSimpleCat_22_17Feb2011.weights.xml"
11  ),
12  thresholdBarrel = cms.double( -0.1875 ),
13  thresholdEndcap = cms.double( -0.1075 ),
14  thresholdIsoDR03Barrel = cms.double( 10.0 ),
15  thresholdIsoDR03Endcap = cms.double( 10.0 )
16  )