CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
eeNoiseFilter_cfi.py
Go to the documentation of this file.
1 
2 import FWCore.ParameterSet.Config as cms
3 
4 eeNoiseFilter = cms.EDFilter(
5  "EENoiseFilter",
6  EBRecHitSource = cms.InputTag('reducedEcalRecHitsEB'),
7  EERecHitSource = cms.InputTag('reducedEcalRecHitsEE'),
8  Slope = cms.double(2),
9  Intercept = cms.double(1000),
10  taggingMode = cms.bool(False),
11  debug = cms.bool(False),
12 )