Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:23:56

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 slimmedElectrons = cms.EDProducer("PATElectronSlimmer",
0004    src = cms.InputTag("selectedPatElectrons"),                                  
0005    dropSuperCluster = cms.string("0"), # you can put a cut to slim selectively, e.g. pt < 10
0006    dropBasicClusters = cms.string("0"), # you can put a cut to slim selectively, e.g. pt < 10
0007    dropPFlowClusters = cms.string("0"), # you can put a cut to slim selectively, e.g. pt < 10
0008    dropPreshowerClusters = cms.string("0"), # you can put a cut to slim selectively, e.g. pt < 10
0009    dropSeedCluster = cms.string("0"), # you can put a cut to slim selectively, e.g. pt < 10
0010    dropRecHits = cms.string("0"), # you can put a cut to slim selectively, e.g. pt < 10
0011    dropCorrections = cms.string("0"), # you can put a cut to slim selectively, e.g. pt < 10
0012    dropIsolations = cms.string("0"), # you can put a cut to slim selectively, e.g. pt < 10
0013    dropShapes = cms.string("0"), # you can put a cut to slim selectively, e.g. pt < 10
0014    dropSaturation = cms.string("pt < 5"), # you can put a cut to slim selectively, e.g. pt < 10
0015    dropExtrapolations  = cms.string("pt < 5"), # you can put a cut to slim selectively, e.g. pt < 10
0016    dropClassifications  = cms.string("0"), # you can put a cut to slim selectively, e.g. pt < 10
0017    linkToPackedPFCandidates = cms.bool(True),
0018    recoToPFMap = cms.InputTag("reducedEgamma","reducedGsfElectronPfCandMap"),
0019    packedPFCandidates = cms.InputTag("packedPFCandidates"), 
0020    saveNonZSClusterShapes = cms.string("pt > 5"), # save additional user floats: (sigmaIetaIeta,sigmaIphiIphi,sigmaIetaIphi,r9,e1x5_over_e5x5)_NoZS 
0021    reducedBarrelRecHitCollection = cms.InputTag("reducedEcalRecHitsEB"),
0022    reducedEndcapRecHitCollection = cms.InputTag("reducedEcalRecHitsEE"),
0023    modifyElectrons = cms.bool(True),
0024    modifierConfig = cms.PSet( modifications = cms.VPSet() )
0025 )
0026