CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
interestingDetIdCollectionProducer_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 interestingDetIdCollectionProducer = cms.EDProducer("InterestingDetIdCollectionProducer",
4  basicClustersLabel = cms.InputTag(''),
5  recHitsLabel = cms.InputTag('ecalRecHit','EcalRecHitsEB'),
6  etaSize = cms.int32(5),
7  phiSize = cms.int32(5),
8  # keep hits with severity >= severityLevel
9  # set to negative to skip
10  severityLevel = cms.int32(1),
11  interestingDetIdCollection = cms.string(''),
12  keepNextToDead = cms.bool(True),
13  keepNextToBoundary = cms.bool(True)
14  )