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  InputLabel = cms.InputTag("simSiPixelDigis"),
5 
6  UsePhase1 = cms.bool(False),
7 )
8 from Configuration.Eras.Modifier_phase1Pixel_cff import phase1Pixel
9 phase1Pixel.toModify(siPixelRawData, UsePhase1=True)
10 
11