CMS 3D CMS Logo

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

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 from RecoEgamma.ElectronIdentification.cutsInCategoriesElectronIdentificationV06_cfi import *
00004 
00005 electronsWithPresel = cms.EDFilter("GsfElectronSelector",
00006                                    src = cms.InputTag("ecalDrivenGsfElectrons"),
00007                                    cut = cms.string("pt > 10 && ecalDrivenSeed && passingCutBasedPreselection"),
00008                                    )
00009 
00010 electronsCiCLoose = cms.EDFilter("EleIdCutBased",
00011                                  src = cms.InputTag("electronsWithPresel"),
00012                                  algorithm = cms.string("eIDCB"),
00013                                  threshold = cms.double(14.5),
00014                                  electronIDType = eidLooseMC.electronIDType,
00015                                  electronQuality = eidLooseMC.electronQuality,
00016                                  electronVersion = eidLooseMC.electronVersion,
00017                                  additionalCategories = eidLooseMC.additionalCategories,
00018                                  classbasedlooseEleIDCutsV06 = eidLooseMC.classbasedlooseEleIDCutsV06,
00019                                  etBinning = cms.bool(False),
00020                                  version = cms.string(""),
00021                                  verticesCollection = cms.InputTag('offlinePrimaryVertices'),
00022                                  reducedBarrelRecHitCollection = cms.InputTag("reducedEcalRecHitsEB"),
00023                                  reducedEndcapRecHitCollection = cms.InputTag("reducedEcalRecHitsEE"),
00024                                  )