CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_14/src/RecoParticleFlow/PFProducer/python/pfElectronTranslator_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 from RecoParticleFlow.PFProducer.pfElectronTranslatorMVACut_cfi import *
00004 
00005 PFElectronTranslator = cms.EDProducer("PFElectronTranslator",
00006                                       PFCandidate = cms.InputTag("pfSelectedElectrons"),
00007                                       PFCandidateElectron = cms.InputTag("particleFlowTmp:electrons"),
00008                                       GSFTracks = cms.InputTag("electronGsfTracks"),
00009                                       PFBasicClusters = cms.string("pf"),
00010                                       PFPreshowerClusters = cms.string("pf"),
00011                                       PFSuperClusters = cms.string("pf"),
00012                                       ElectronMVA = cms.string("pf"),
00013                                       ElectronSC = cms.string("pf"),
00014                                       PFGsfElectron = cms.string("pf"),
00015                                       PFGsfElectronCore = cms.string("pf"),
00016                                       MVACutBlock = cms.PSet(pfElecMva),
00017                                       CheckStatusFlag = cms.bool(True),
00018                                       isolationValues = cms.PSet(
00019                                                pfChargedHadrons = cms.InputTag('elPFIsoValueCharged04PFId'),
00020                                                pfPhotons = cms.InputTag('elPFIsoValueGamma04PFId'),
00021                                                pfNeutralHadrons= cms.InputTag('elPFIsoValueNeutral04PFId'))
00022                                       )