CMS 3D CMS Logo

esDigiToRaw_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 esDigiToRaw = cms.EDProducer("ESDigiToRaw",
4  debugMode = cms.untracked.bool(False),
5  InstanceES = cms.string(''),
6  Label = cms.string('simEcalPreshowerDigis'),
7  LookupTable = cms.untracked.FileInPath('EventFilter/ESDigiToRaw/data/ES_lookup_table.dat')
8 )
9 
10 # bypass zero suppression
11 from Configuration.ProcessModifiers.premix_stage1_cff import premix_stage1
12 premix_stage1.toModify(esDigiToRaw, Label = 'mix')
13