CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
filterRecHits_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 recHitEnergyFilter = cms.EDFilter("RecHitEnergyFilter",
4  DoEB = cms.bool(True),
5  DoEE = cms.bool(False),
6  EBThresh = cms.double(3.0),
7  EEThresh = cms.double(3.0),
8  EBRecHits = cms.InputTag('ecalRecHit', 'EcalRecHitsEB'),
9  EERecHits = cms.InputTag('ecalRecHit', 'EcalRecHitsEE')
10 )