CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
egammaRechitFilter_cfi.py
Go to the documentation of this file.
2 
3 #
4 # module for filtering of rechits. user provides noise threshold in GeV units
5 # Author: Shahram Rahatlou, University of Rome & INFN
6 # $Id: egammaRechitFilter_cfi.py,v 1.5 2013/04/19 07:24:05 argiro Exp $
7 #
8 rechitFilter = cms.EDProducer("RecHitFilter",
9  noiseEnergyThreshold = cms.double(0.08),
10  noiseChi2Threshold = cms.double(40),
11  hitCollection = cms.InputTag('EcalRecHit','EcalRecHitsEB'),
12  reducedHitCollection = cms.string('FilteredEcalRecHitCollection')
13 )
14 
15