Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:24:40

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 #
0004 #  module for filtering of rechits. user provides noise threshold in GeV units
0005 #  Author: Shahram Rahatlou, University of Rome & INFN
0006 #
0007 rechitFilter = cms.EDProducer("RecHitFilter",
0008     noiseEnergyThreshold = cms.double(0.08),
0009     noiseChi2Threshold = cms.double(40),
0010     hitCollection = cms.InputTag('EcalRecHit','EcalRecHitsEB'),
0011     reducedHitCollection = cms.string('FilteredEcalRecHitCollection')
0012 )
0013 
0014