CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
HBHE_custom_25nsMethod.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 def customise_HBHE_Method1(process):
4  if hasattr(process,'hbheprereco'):
5  process.hbheprereco.puCorrMethod = cms.int32(1)
6  return process
7 
8 def customise_HBHE_Method0(process):
9  if hasattr(process,'hbheprereco'):
10  process.hbheprereco.puCorrMethod = cms.int32(0)
11  return process
12