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