CMS 3D CMS Logo

customSegmentBuilder.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 def widenRoads(process):
4  if hasattr(process,'cscSegments'):
5  for ps in process.cscSegments.algo_psets[4].algo_psets: ps.enlarge = True
6 
7  return process
8