Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-10-25 10:00:06

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def customise_HBHE_Method1(process):
0004    if hasattr(process,'hbheprereco'): 
0005       process.hbheprereco.cpu.puCorrMethod = cms.int32(1)
0006    return process
0007 
0008 def customise_HBHE_Method0(process):
0009    if hasattr(process,'hbheprereco'): 
0010       process.hbheprereco.cpu.puCorrMethod = cms.int32(0)
0011    return process
0012