CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
customise_overwriteL1Menu.py
Go to the documentation of this file.
1 #
2 # replace the L1 menu from the global tag with another menu
3 # see options in L1Trigger_custom.py
4 #
5 # V.M. Ghete 2010-06-09
6 
7 import FWCore.ParameterSet.Config as cms
8 
9 def customise(process):
10  from L1Trigger.Configuration.L1Trigger_custom import customiseL1Menu
11  process=customiseL1Menu(process)
12 
13  return (process)