File indexing completed on 2024-04-06 12:08:48
0001 import FWCore.ParameterSet.Config as cms
0002
0003 SiStripSpyEventMatcher = cms.EDFilter(
0004 "SiStripSpyEventMatcherModule",
0005 FilterNonMatchingEvents = cms.bool(True),
0006 MergeData = cms.bool(True),
0007 PrimaryEventRawDataTag = cms.InputTag('source'),
0008 SpyTotalEventCountersTag = cms.InputTag('SiStripSpyUnpacker','TotalEventCount'),
0009 SpyL1ACountersTag = cms.InputTag('SiStripSpyUnpacker','L1ACount'),
0010 SpyAPVAddressesTag = cms.InputTag('SiStripSpyDigiConverter','APVAddress'),
0011 RawSpyDataTag = cms.InputTag('source'),
0012 SpyScopeDigisTag = cms.InputTag('SiStripSpyUnpacker','ScopeRawDigis'),
0013 SpyPayloadDigisTag = cms.InputTag('SiStripSpyDigiConverter','Payload'),
0014 SpyReorderedDigisTag = cms.InputTag('SiStripSpyDigiConverter','Reordered'),
0015 SpyVirginRawDigisTag = cms.InputTag('SiStripSpyDigiConverter','VirginRaw'),
0016 SpySource = cms.SecSource(
0017 "EmbeddedRootSource",
0018 fileNames = cms.untracked.vstring(
0019 'SpyFileNameWhichNeedsToBeSet SiStripSpyEventMatcher.SpySource.fileNames'
0020 ),
0021 sequential = cms.untracked.bool(True),
0022 ),
0023 CounterDiffMaxAllowed = cms.uint32(100)
0024 )
0025