Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:29:33

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 #--- reset HB/HE digi frame size to 8TS & SOI=3 (0,1,2,3)
0004 #--- NB: needs ZS re-adjustment/customization at the same time 
0005 
0006 def customise_8TS(process):
0007     process.mix.digitizers.hcal.hb.readoutFrameSize = 8
0008     process.mix.digitizers.hcal.he.readoutFrameSize = 8
0009     process.mix.digitizers.hcal.hb.binOfMaximum = 4
0010     process.mix.digitizers.hcal.he.binOfMaximum = 4
0011     return(process)