CMS 3D CMS Logo

SiStripSpyEventMatcher_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 SiStripSpyEventMatcher = cms.EDFilter(
4  "SiStripSpyEventMatcherModule",
5  FilterNonMatchingEvents = cms.bool(True),
6  MergeData = cms.bool(True),
7  PrimaryEventRawDataTag = cms.InputTag('source'),
8  SpyTotalEventCountersTag = cms.InputTag('SiStripSpyUnpacker','TotalEventCount'),
9  SpyL1ACountersTag = cms.InputTag('SiStripSpyUnpacker','L1ACount'),
10  SpyAPVAddressesTag = cms.InputTag('SiStripSpyDigiConverter','APVAddress'),
11  RawSpyDataTag = cms.InputTag('source'),
12  SpyScopeDigisTag = cms.InputTag('SiStripSpyUnpacker','ScopeRawDigis'),
13  SpyPayloadDigisTag = cms.InputTag('SiStripSpyDigiConverter','Payload'),
14  SpyReorderedDigisTag = cms.InputTag('SiStripSpyDigiConverter','Reordered'),
15  SpyVirginRawDigisTag = cms.InputTag('SiStripSpyDigiConverter','VirginRaw'),
16  SpySource = cms.SecSource(
17  "EmbeddedRootSource",
18  fileNames = cms.untracked.vstring(
19  'SpyFileNameWhichNeedsToBeSet SiStripSpyEventMatcher.SpySource.fileNames'
20  ),
21  sequential = cms.untracked.bool(True),
22  ),
23  CounterDiffMaxAllowed = cms.uint32(100)
24  )
25