CMS 3D CMS Logo

clusterbigeventsdebugger_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 clusterbigeventsdebugger = cms.EDAnalyzer('ClusterBigEventsDebugger',
4  collection = cms.InputTag("siStripClusters"),
5  singleEvents = cms.bool(False),
6  foldedStrips = cms.untracked.bool(False),
7  want1dHisto = cms.untracked.bool(True),
8  wantProfile = cms.untracked.bool(True),
9  want2dHisto = cms.untracked.bool(True),
10  selections = cms.VPSet(
11  cms.PSet(label=cms.string("TIB"),selection=cms.untracked.vstring("0x1e000000-0x16000000")),
12  cms.PSet(label=cms.string("TEC"),selection=cms.untracked.vstring("0x1e000000-0x1c000000")),
13  cms.PSet(label=cms.string("TOB"),selection=cms.untracked.vstring("0x1e000000-0x1a000000")),
14  cms.PSet(label=cms.string("TID"),selection=cms.untracked.vstring("0x1e000000-0x18000000"))
15  )
16 
17 )