test
CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
l1GtVhdlWriter_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # cfi for L1 GT VHDL Writer
4 l1GtVhdlWriter = cms.EDAnalyzer("L1GtVhdlWriter",
5 
6  # choose VHDL directory
7  VhdlTemplatesDir = cms.string('../data/VhdlTemplates/'),
8 
9  # choose ouput directory
10  OutputDir = cms.string('../test/output/')
11 )
12 
13