CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
pfGsfElectronMVASelector_cfi.py
Go to the documentation of this file.
2 
4 
5 electronsWithPresel = cms.EDFilter("GsfElectronSelector",
6  src = cms.InputTag("ecalDrivenGsfElectrons"),
7  cut = cms.string("pt > 5 && ecalDrivenSeed && passingCutBasedPreselection"),
8  )
9 
10 mvaElectrons = cms.EDFilter("ElectronIdMVABased",
11  vertexTag = cms.InputTag('offlinePrimaryVertices'),
12  electronTag = cms.InputTag('electronsWithPresel'),
13  HZZmvaWeightFile = cms.string('RecoEgamma/ElectronIdentification/data/TMVA_BDTSimpleCat_17Feb2011.weights.xml'),
14  thresholdBarrel = cms.double( -0.1875 ),
15  thresholdEndcap = cms.double( -0.1075 ),
16  thresholdIsoDR03Barrel = cms.double( 10.0 ),
17  thresholdIsoDR03Endcap = cms.double( 10.0 )
18  )
19