CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
slimmedElectrons_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 slimmedElectrons = cms.EDProducer("PATElectronSlimmer",
4  src = cms.InputTag("selectedPatElectrons"),
5  dropSuperCluster = cms.string("0"), # you can put a cut to slim selectively, e.g. pt < 10
6  dropBasicClusters = cms.string("0"), # you can put a cut to slim selectively, e.g. pt < 10
7  dropPFlowClusters = cms.string("0"), # you can put a cut to slim selectively, e.g. pt < 10
8  dropPreshowerClusters = cms.string("0"), # you can put a cut to slim selectively, e.g. pt < 10
9  dropSeedCluster = cms.string("0"), # you can put a cut to slim selectively, e.g. pt < 10
10  dropRecHits = cms.string("0"), # you can put a cut to slim selectively, e.g. pt < 10
11  dropCorrections = cms.string("pt < 5"), # you can put a cut to slim selectively, e.g. pt < 10
12  dropIsolations = cms.string("pt < 5"), # you can put a cut to slim selectively, e.g. pt < 10
13  dropShapes = cms.string("pt < 5"), # you can put a cut to slim selectively, e.g. pt < 10
14  dropExtrapolations = cms.string("pt < 5"), # you can put a cut to slim selectively, e.g. pt < 10
15  dropClassifications = cms.string("pt < 5"), # you can put a cut to slim selectively, e.g. pt < 10
16  linkToPackedPFCandidates = cms.bool(True),
17  recoToPFMap = cms.InputTag("reducedEgamma","reducedGsfElectronPfCandMap"),
18  packedPFCandidates = cms.InputTag("packedPFCandidates"),
19  saveNonZSClusterShapes = cms.string("pt > 5"), # save additional user floats: (sigmaIetaIeta,sigmaIphiIphi,sigmaIetaIphi,r9,e1x5_over_e5x5)_NoZS
20  reducedBarrelRecHitCollection = cms.InputTag("reducedEcalRecHitsEB"),
21  reducedEndcapRecHitCollection = cms.InputTag("reducedEcalRecHitsEE"),
22  modifyElectrons = cms.bool(True),
23  modifierConfig = cms.PSet( modifications = cms.VPSet() )
24 )
25