CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_2_9/src/L1Trigger/Configuration/python/customise_overwriteL1Menu.py

Go to the documentation of this file.
00001 #
00002 # replace the L1 menu from the global tag with another menu
00003 # see options in L1Trigger_custom.py
00004 #
00005 # V.M. Ghete 2010-06-09
00006 
00007 import FWCore.ParameterSet.Config as cms
00008 
00009 def customise(process):
00010     from L1Trigger.Configuration.L1Trigger_custom import customiseL1Menu
00011     process=customiseL1Menu(process)
00012     
00013     return (process)