Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:26:45

0001 
0002 import FWCore.ParameterSet.Config as cms
0003 
0004 eeNoiseFilter = cms.EDFilter(
0005   "EENoiseFilter",
0006   EBRecHitSource = cms.InputTag('reducedEcalRecHitsEB'),
0007   EERecHitSource = cms.InputTag('reducedEcalRecHitsEE'),
0008   Slope     = cms.double(2),
0009   Intercept = cms.double(1000),
0010   taggingMode = cms.bool(False),
0011   debug = cms.bool(False),
0012 )