File indexing completed on 2024-04-06 12:23:56
0001 import FWCore.ParameterSet.Config as cms
0002
0003 slimmedPhotons = cms.EDProducer("PATPhotonSlimmer",
0004 src = cms.InputTag("selectedPatPhotons"),
0005 dropSuperCluster = cms.string("0"),
0006 dropBasicClusters = cms.string("0"),
0007 dropPreshowerClusters = cms.string("0"),
0008 dropSeedCluster = cms.string("0"),
0009 dropRecHits = cms.string("0"),
0010 dropSaturation = cms.string("0"),
0011 dropRegressionData = cms.string("1"),
0012 linkToPackedPFCandidates = cms.bool(True),
0013 recoToPFMap = cms.InputTag("reducedEgamma","reducedPhotonPfCandMap"),
0014 packedPFCandidates = cms.InputTag("packedPFCandidates"),
0015 saveNonZSClusterShapes = cms.string("0"),
0016 reducedBarrelRecHitCollection = cms.InputTag("reducedEcalRecHitsEB"),
0017 reducedEndcapRecHitCollection = cms.InputTag("reducedEcalRecHitsEE"),
0018 modifyPhotons = cms.bool(True),
0019 modifierConfig = cms.PSet( modifications = cms.VPSet() )
0020 )