CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
customiseDemo.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 import os
4 
5 ##############################################################################
6 # customisations for L1T demos
7 #
8 # Add demonstration modules to cmsDriver customs.
9 #
10 ##############################################################################
11 
12 def L1TBasicDemo(process):
13  print "L1T INFO: adding basic demo module to the process."
14  process.load('L1Trigger.L1TCommon.l1tBasicDemo_cfi')
15  process.l1tBasicDemoPath = cms.Path(process.l1tBasicDemo)
16  process.schedule.append(process.l1tBasicDemoPath)
17  return process
18 
def L1TBasicDemo
customisations for L1T demos