Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:30:54

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def customise(process):
0004     # Signal in Deconvolution Mode
0005     for ps in process.mix.digitizers:
0006         if ps.accumulatorType == cms.string('SiStripDigitizer'):
0007             ps.APVpeakmode = cms.bool(False)
0008             return(process)
0009