CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
hiSpikeCleaner_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 hiSpikeCleaner = cms.EDProducer("HiSpikeCleaner",
4  recHitProducerBarrel = cms.InputTag("ecalRecHit","EcalRecHitsEB"),
5  recHitProducerEndcap = cms.InputTag("ecalRecHit","EcalRecHitsEE"),
6  originalSuperClusterProducer = cms.InputTag("correctedIslandBarrelSuperClusters"),
7  outputColl = cms.string( "" ),
8  etCut = cms.double(10),
9  TimingCut = cms.untracked.double(4.0),
10  swissCutThr = cms.untracked.double(0.95)
11  )
12 
13 
14 
15