CMS 3D CMS Logo

SiStripSpyUnpacker_cfi.py
Go to the documentation of this file.
1 # Configuration include for unpacking scope mode digis from spy channel data
2 #============================================================================
3 import FWCore.ParameterSet.Config as cms
4 
5 SiStripSpyUnpacker = cms.EDProducer(
6  "SiStripSpyUnpackerModule",
7  FEDIDs = cms.vuint32(), # FED IDs to look at - leave empty for all FEDs
8  #FEDIDs = cms.vuint32(50, 187, 260, 356), # or use a subset.
9  InputProductLabel = cms.InputTag('source'),
10  AllowIncompleteEvents = cms.bool(True),
11  StoreCounters = cms.bool(True),
12  StoreScopeRawDigis = cms.bool(True) # Note - needs to be True for use in other modules.
13  )