CMS 3D CMS Logo

SiPixelDigiToRaw_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 siPixelRawData = cms.EDProducer("SiPixelDigiToRaw",
4  Timing = cms.untracked.bool(False),
5  InputLabel = cms.InputTag("simSiPixelDigis"),
6 ## Use phase1
7  UsePhase1 = cms.bool(False),
8 )
9 from Configuration.Eras.Modifier_phase1Pixel_cff import phase1Pixel
10 phase1Pixel.toModify(siPixelRawData, UsePhase1=True)
11 
12