00001 import FWCore.ParameterSet.Config as cms 00002 00003 def customise(process): 00004 # Signal in Deconvolution Mode 00005 for ps in process.mix.digitizers: 00006 if ps.accumulatorType == cms.string('SiStripDigitizer'): 00007 ps.APVpeakmode = cms.bool(True) 00008 ps.electronPerAdc = cms.double(262.0) #this is the value measured in peak... should we add 15%? 00009 return(process) 00010