Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002
00003 SiStripSpyEventMatcher = cms.EDFilter(
00004 "SiStripSpyEventMatcherModule",
00005 FilterNonMatchingEvents = cms.bool(True),
00006 MergeData = cms.bool(True),
00007 PrimaryEventRawDataTag = cms.InputTag('source'),
00008 SpyTotalEventCountersTag = cms.InputTag('SiStripSpyUnpacker','TotalEventCount'),
00009 SpyL1ACountersTag = cms.InputTag('SiStripSpyUnpacker','L1ACount'),
00010 SpyAPVAddressesTag = cms.InputTag('SiStripSpyDigiConverter','APVAddress'),
00011 RawSpyDataTag = cms.InputTag('source'),
00012 SpyScopeDigisTag = cms.InputTag('SiStripSpyUnpacker','ScopeRawDigis'),
00013 SpyPayloadDigisTag = cms.InputTag('SiStripSpyDigiConverter','Payload'),
00014 SpyReorderedDigisTag = cms.InputTag('SiStripSpyDigiConverter','Reordered'),
00015 SpyVirginRawDigisTag = cms.InputTag('SiStripSpyDigiConverter','VirginRaw'),
00016 SpySource = cms.SecSource(
00017 "PoolSource",
00018 fileNames = cms.untracked.vstring(
00019 'SpyFileNameWhichNeedsToBeSet SiStripSpyEventMatcher.SpySource.fileNames'
00020 )
00021 ),
00022 CounterDiffMaxAllowed = cms.uint32(100)
00023 )
00024