CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
SiStripSpyDigiConverter_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 SiStripSpyDigiConverter = cms.EDProducer(
4  "SiStripSpyDigiConverterModule",
5  InputProductLabel = cms.InputTag('SiStripSpyUnpacker','ScopeRawDigis'),
6  StorePayloadDigis = cms.bool(False),
7  StoreReorderedDigis = cms.bool(False),
8  StoreModuleDigis = cms.bool(True),
9  StoreAPVAddress = cms.bool(True),
10  DiscardDigisWithWrongAPVAddress = cms.bool(True),
11  MinDigiRange = cms.uint32(100),
12  MaxDigiRange = cms.uint32(1024),
13  MinZeroLight = cms.uint32(0),
14  MaxZeroLight = cms.uint32(1024),
15  MinTickHeight = cms.uint32(0),
16  MaxTickHeight = cms.uint32(1024),
17  ExpectedPositionOfFirstHeaderBit = cms.uint32(6)
18  )