CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
customiseNoCCC.py
Go to the documentation of this file.
2 
3 def customiseNoCCC(process):
4 
5  # apply only in reco step
6  if not hasattr(process,'reconstruction'):
7  return process
8  process.SiStripClusterChargeCutTight.value = -1.
9  process.SiStripClusterChargeCutLoose.value = -1.
10 
11  return process