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.
1 import FWCore.ParameterSet.Config as cms
2 
3 #
4 # module for filtering of rechits. user provides noise threshold in GeV units
5 # Author: Shahram Rahatlou, University of Rome & INFN
6 #
7 rechitFilter = cms.EDProducer("RecHitFilter",
8  noiseEnergyThreshold = cms.double(0.08),
9  noiseChi2Threshold = cms.double(40),
10  hitCollection = cms.InputTag('EcalRecHit','EcalRecHitsEB'),
11  reducedHitCollection = cms.string('FilteredEcalRecHitCollection')
12 )
13 
14